1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
rails_root = Pathname.new(File.dirname(__FILE__)).join("..")
gem "rack", "~> 1.0.0"
gem "rack-test", "~> 0.4.2"
gem "activesupport", "3.0.pre", :vendored_at => rails_root.join("activesupport")
gem "activemodel", "3.0.pre", :vendored_at => rails_root.join("activemodel")
only :test do
gem "mocha"
gem "sqlite3-ruby"
gem "RedCloth"
activesupport_vendor = rails_root.join('activesupport', 'lib', 'active_support', 'vendor')
gem 'builder', '2.1.2', :vendored_at => activesupport_vendor.join('builder-2.1.2')
gem 'memcache-client', '1.6.5', :vendored_at => activesupport_vendor.join('memcache-client-1.6.5')
gem 'tzinfo', '0.3.13', :vendored_at => activesupport_vendor.join('tzinfo-0.3.13')
end
disable_system_gems
|