2009-11-02 23:25:02 -05:00
|
|
|
clear_sources
|
|
|
|
source 'http://gemcutter.org'
|
2009-10-20 19:33:54 -04:00
|
|
|
|
2009-11-10 17:59:22 -05:00
|
|
|
gem "rake", ">= 0.8.7"
|
|
|
|
gem "mocha", ">= 0.9.8"
|
|
|
|
|
2009-11-09 14:33:47 -05:00
|
|
|
gem "rails", "3.0.pre", :vendored_at => "railties"
|
2009-11-10 17:59:22 -05:00
|
|
|
%w(activesupport activemodel actionpack actionmailer activerecord activeresource).each do |lib|
|
2009-11-09 14:33:47 -05:00
|
|
|
gem lib, '3.0.pre', :vendored_at => lib
|
2009-10-20 19:33:54 -04:00
|
|
|
end
|
2009-11-10 17:59:22 -05:00
|
|
|
|
|
|
|
# AR
|
2009-11-10 16:52:25 -05:00
|
|
|
gem "arel", "0.2.pre", :git => "git://github.com/rails/arel.git"
|
2009-11-10 17:59:22 -05:00
|
|
|
gem "sqlite3-ruby", ">= 1.2.5"
|
|
|
|
|
|
|
|
# AP
|
|
|
|
gem "rack", "1.0.1", :git => "git://github.com/rails/rack.git"
|
|
|
|
gem "rack-mount", :git => "git://github.com/rails/rack-mount.git"
|
|
|
|
gem "rack-test", ">= 0.5.0"
|
|
|
|
gem "erubis", ">= 2.6.5"
|
|
|
|
gem "RedCloth", ">= 4.2.2"
|
|
|
|
|
|
|
|
only :ci do
|
|
|
|
gem "fcgi", ">= 0.8.7"
|
|
|
|
gem "nokogiri", ">= 1.4.0"
|
|
|
|
gem "memcache-client", ">= 1.7.6"
|
|
|
|
gem "pg", ">= 0.8.0"
|
|
|
|
end
|