Setup bundler for use with Tracks

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
This commit is contained in:
Matt Rogers 2011-08-17 16:09:28 -05:00
parent 84ad01a6f6
commit 5daff93349
2 changed files with 153 additions and 0 deletions

37
Gemfile Normal file
View file

@ -0,0 +1,37 @@
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