mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-12-06 00:00:29 -05:00
Any project using this gem (with Ruby < 1.9.3) will need to do the same in its own gemfile.
10 lines
245 B
Plaintext
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
|