stripe-ruby/gemfiles/default-with-activesupport.gemfile
Andy Brody 9cf5089dc1 Revert "Change rest-client pin to ruby < 1.9.2."
This reverts commit 39a196541f857ac6266b7a06f589ead21c87a8aa.

Just kidding. Activesupport itself depends on ruby >= 1.9.3.
2014-07-15 13:42:48 -07:00

10 lines
245 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 'rest-client', '~> 1.6.8'
gem 'activesupport', '~> 3.2'
else
gem 'activesupport'
end