stripe-ruby/gemfiles/default-with-activesupport.gemfile
Russell Davis 3c76c9f150 Fix gemfiles for use with Ruby < 1.9.3
Any project using this gem (with Ruby < 1.9.3) will need to do the same
in its own gemfile.
2014-07-13 13:44:36 -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