mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
13 lines
485 B
Ruby
13 lines
485 B
Ruby
Gem.sources.each { |uri| source uri }
|
|
sibling = "#{File.dirname(__FILE__)}/.."
|
|
|
|
gem "mocha"
|
|
|
|
gem "arel", :git => "git://github.com/rails/arel.git"
|
|
gem "rack", "1.0.1", :git => "git://github.com/rails/rack.git", :branch => "rack-1.0"
|
|
gem "rack-mount", :git => "git://github.com/josh/rack-mount.git"
|
|
gem "rack-test", "~> 0.5.0"
|
|
|
|
%w(activesupport activemodel actionpack actionmailer activerecord activeresource).each do |lib|
|
|
gem lib, '3.0.pre', :vendored_at => "#{sibling}/#{lib}"
|
|
end
|