stripe-ruby/gemfiles/yajl.gemfile
Russell Davis 317634ede7 Force an older version of the i18n gem for Ruby < 1.9.3
This should fix the travis build for 1.8.7 and 1.9.2.
2014-12-26 14:45:25 -08:00

13 lines
284 B
Plaintext

source "https://rubygems.org"
gemspec :path => File.join(File.dirname(__FILE__), "..")
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('1.9.3')
gem 'i18n', '< 0.7'
gem 'rest-client', '~> 1.6.8'
gem 'activesupport', '~> 3.2'
else
gem 'activesupport'
end
gem 'yajl-ruby'