aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Gemfile
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-09-13 12:24:50 -0500
committerJoshua Peek <josh@joshpeek.com>2009-09-13 12:24:50 -0500
commitf3f2e0b00d8b422fd5921fb709ac7a9570ad2a6a (patch)
treeae71197fdcd8c87e784dd91e35aabcf13cc44407 /activesupport/Gemfile
parent3b325d624ccb5b390356d61a3ba72f09709066a4 (diff)
downloadrails-f3f2e0b00d8b422fd5921fb709ac7a9570ad2a6a.tar.gz
rails-f3f2e0b00d8b422fd5921fb709ac7a9570ad2a6a.tar.bz2
rails-f3f2e0b00d8b422fd5921fb709ac7a9570ad2a6a.zip
Move AS vendor support into bundler.
Run `rake bundle` before running tests.
Diffstat (limited to 'activesupport/Gemfile')
-rw-r--r--activesupport/Gemfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/activesupport/Gemfile b/activesupport/Gemfile
new file mode 100644
index 0000000000..c41e742058
--- /dev/null
+++ b/activesupport/Gemfile
@@ -0,0 +1,19 @@
+lib_dir = Pathname.new(File.dirname(__FILE__)).join('lib')
+vendor_dir = lib_dir.join('active_support', 'vendor')
+
+# gem 'builder', '~> 2.1.2'
+# gem 'memcache-client', '>= 1.6.5'
+# gem 'tzinfo', '~> 0.3.13'
+# gem 'i18n', '~> 0.1.3'
+
+gem 'builder', '2.1.2', :vendored_at => vendor_dir.join('builder-2.1.2')
+gem 'memcache-client', '1.6.5', :vendored_at => vendor_dir.join('memcache-client-1.6.5')
+gem 'tzinfo', '0.3.13', :vendored_at => vendor_dir.join('tzinfo-0.3.13')
+gem 'i18n', '0.1.3', :vendored_at => vendor_dir.join('i18n-0.1.3')
+
+only :test do
+ gem 'mocha', '>= 0.9.7'
+ gem 'ruby-prof', '>= 0.6.1'
+end
+
+disable_rubygems