mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-21 21:40:48 +02:00

Changes you will need to make: * In your environment.rb, you will need to update references to a few files per environment.rb.tmpl * In your environment.rb, you will need to specify the local time zone of the computer that is running your Tracks install. Other notes on my changes: * Modified our code to take advantage of Rails 2.1's slick time zone support. * Upgraded will_paginate for compatibility * Hacked the Selenium on Rails plugin, which has not been updated in some time and does not support Rails 2.1 * Verified that all tests pass on my machine, including Selenium tests -- I'd like confirmation from others, too.
21 lines
788 B
Ruby
21 lines
788 B
Ruby
plugin_root = File.join(File.dirname(__FILE__), '..')
|
|
version = ENV['RAILS_VERSION']
|
|
version = nil if version and version == ""
|
|
|
|
# first look for a symlink to a copy of the framework
|
|
if !version and framework_root = ["#{plugin_root}/rails", "#{plugin_root}/../../rails"].find { |p| File.directory? p }
|
|
puts "found framework root: #{framework_root}"
|
|
# this allows for a plugin to be tested outside of an app and without Rails gems
|
|
$:.unshift "#{framework_root}/activesupport/lib", "#{framework_root}/activerecord/lib", "#{framework_root}/actionpack/lib"
|
|
else
|
|
# simply use installed gems if available
|
|
puts "using Rails#{version ? ' ' + version : nil} gems"
|
|
require 'rubygems'
|
|
|
|
if version
|
|
gem 'rails', version
|
|
else
|
|
gem 'actionpack'
|
|
gem 'activerecord'
|
|
end
|
|
end
|