aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/vendor.rb
blob: 5c79c6a4207433f35b6bf93ced310061158dd2f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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