mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
18 lines
506 B
Ruby
18 lines
506 B
Ruby
rails_root = Pathname.new(File.dirname(__FILE__)).join("..")
|
|
|
|
Gem.sources.each { |uri| source uri }
|
|
|
|
gem "rack", "~> 1.0.0"
|
|
gem "rack-test", "~> 0.5.0"
|
|
gem "activesupport", "3.0.pre", :vendored_at => rails_root.join("activesupport")
|
|
gem "activemodel", "3.0.pre", :vendored_at => rails_root.join("activemodel")
|
|
gem "activerecord", "3.0.pre", :vendored_at => rails_root.join("activerecord")
|
|
gem "erubis", "~> 2.6.0"
|
|
|
|
only :test do
|
|
gem "mocha"
|
|
gem "sqlite3-ruby"
|
|
gem "RedCloth"
|
|
end
|
|
|
|
disable_system_gems
|