validates_timeliness/spec/ginger_scenarios.rb
Adam Meehan 1001d29c01 rails 2.3.0 fix with I18n.reload!
added 2.3 to ginger list
2009-02-08 20:54:45 +11:00

20 lines
419 B
Ruby

# For use with the ginger gem to test plugin against multiple versions of Rails.
#
# To use ginger:
#
# sudo gem install freelancing-god-ginger --source=http://gems.github.com
#
# Then run
#
# ginger spec
#
Ginger.configure do |config|
rails_versions = ['2.0.2', '2.1.2', '2.2.2', '2.3.0']
rails_versions.each do |v|
g = Ginger::Scenario.new
g['rails'] = v
config.scenarios << g.dup
end
end