stripe-ruby/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

9 lines
195 B
Ruby

source "https://rubygems.org"
gemspec
if Gem::Version.new(RUBY_VERSION.dup) < Gem::Version.new('1.9.3')
gem 'i18n', '< 0.7'
gem 'rest-client', '~> 1.6.8'
gem 'activesupport', '~> 3.2'
end