mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-02 23:38:50 +01:00
There were several places where newer versions of gems were being pulled. Those newer versions were breaking the functional tests and the cucumber features. Go back to known working versions of the gems that were causing failures
37 lines
846 B
Ruby
37 lines
846 B
Ruby
source :gemcutter
|
|
source :rubyforge
|
|
source "http://gems.github.com/"
|
|
|
|
gem "rails", "~>2.3.12"
|
|
gem "highline", "~>1.5.0"
|
|
gem "RedCloth", "4.2.3"
|
|
gem "soap4r"
|
|
gem "sanitize", "~>1.2.1"
|
|
gem "rack", "1.1.0"
|
|
gem "will_paginate", "~> 2.3.15"
|
|
gem "has_many_polymorphs", "~> 2.13"
|
|
gem "aasm", "2.2.0"
|
|
gem "actionwebservice", :git => "git://github.com/dejan/actionwebservice.git"
|
|
gem "rubycas-client"
|
|
gem "ruby-openid", :require => "openid"
|
|
gem "sqlite3"
|
|
|
|
|
|
gem "webrat", ">=0.7.0", :groups => [:cucumber, :test]
|
|
gem "database_cleaner", ">=0.5.0", :groups => [:cucumber, :selenium]
|
|
gem "cucumber-rails", "~>0.3.0", :groups => :cucumber
|
|
|
|
group :test do
|
|
gem "flexmock"
|
|
gem "ZenTest", ">=4.0.0"
|
|
gem "hpricot"
|
|
gem "hoe"
|
|
gem "rspec-rails", "~>1.3.3"
|
|
gem "thoughtbot-factory_girl"
|
|
end
|
|
|
|
group :selenium do
|
|
gem "selenium-client"
|
|
gem "mongrel"
|
|
end
|
|
|