mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
21 lines
517 B
Ruby
21 lines
517 B
Ruby
Gem.sources.each { |uri| source uri }
|
|
|
|
gem "rails", "3.0.pre", :vendored_at => "railties"
|
|
%w(
|
|
activesupport
|
|
activemodel
|
|
actionpack
|
|
actionmailer
|
|
activerecord
|
|
activeresource
|
|
).each do |lib|
|
|
gem lib, '3.0.pre', :vendored_at => lib
|
|
end
|
|
gem "rack", "1.0.1"
|
|
gem "rack-mount", :git => "git://github.com/rails/rack-mount.git"
|
|
gem "rack-test", "~> 0.5.0"
|
|
gem "erubis", "~> 2.6.0"
|
|
gem "arel", :git => "git://github.com/rails/arel.git"
|
|
gem "mocha"
|
|
gem "sqlite3-ruby"
|
|
gem "RedCloth"
|