aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/vendor.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-09-24 17:29:59 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-09-24 17:29:59 -0700
commit772a32a22d71f7a22108719d88c94959ae4942b6 (patch)
tree1ecf8e5c09516149806145a5d55c710316702ab8 /activesupport/lib/active_support/vendor.rb
parent0039c0344c54423413728a92509b42fe7f37d90c (diff)
downloadrails-772a32a22d71f7a22108719d88c94959ae4942b6.tar.gz
rails-772a32a22d71f7a22108719d88c94959ae4942b6.tar.bz2
rails-772a32a22d71f7a22108719d88c94959ae4942b6.zip
Convert the other vendored libs to avoid pulling in old gems. Works even if rubygems isn't loaded.
Diffstat (limited to 'activesupport/lib/active_support/vendor.rb')
-rw-r--r--activesupport/lib/active_support/vendor.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/activesupport/lib/active_support/vendor.rb b/activesupport/lib/active_support/vendor.rb
deleted file mode 100644
index 5c79c6a420..0000000000
--- a/activesupport/lib/active_support/vendor.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# Fakes out gem optional dependencies until they are fully supported by gemspec.
-# Activate any optional dependencies that are available.
-if defined? Gem
- begin
- gem 'builder', '~> 2.1.2'
- rescue Gem::LoadError
- end
-
- begin
- gem 'memcache-client', '>= 1.6.5'
- rescue Gem::LoadError
- end
-
- begin
- gem 'i18n', '~> 0.1.3'
- rescue Gem::LoadError
- end
-end