mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-26 12:08:47 +01:00
Add the Gemfile and Gemfile.lock files used to specify the dependencies of the app. The Gemfile specifies the dependencies and the Gemfile.lock is a snapshot of the dependencies. If the Gemfile changes, then Bundler will look at the differences between the Gemfile and the Gemfile.lock to determine what other gems to install or upgrade
37 lines
747 B
Ruby
37 lines
747 B
Ruby
source :gemcutter
|
|
source :rubyforge
|
|
source "http://gems.github.com/"
|
|
|
|
gem "rails", "~>2.3.12"
|
|
gem "highline"
|
|
gem "RedCloth", "4.2.3"
|
|
gem "soap4r"
|
|
gem "sanitize", "~>2.0.0"
|
|
gem "rack", "1.1.0"
|
|
gem "will_paginate", "~> 2.3.15"
|
|
gem "has_many_polymorphs"
|
|
gem "aasm", "2.2.0"
|
|
gem "actionwebservice"
|
|
gem "rubycas-client"
|
|
gem "ruby-openid"
|
|
gem "sqlite3"
|
|
|
|
|
|
gem "webrat", ">=0.7.0", :groups => [:cucumber, :test]
|
|
gem "database_cleaner", ">=0.5.0", :groups => [:cucumber, :selenium]
|
|
gem "cucumber-rails", "~>0.4.1", :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
|
|
|