Skip to content

Commit

Permalink
Merge pull request #34 from Senjai/activemerchant_v160
Browse files Browse the repository at this point in the history
Relax gem restrictions on activemerchant.
  • Loading branch information
jhawthorn authored Jul 26, 2016
2 parents 4215241 + 077cd2b commit fce7ce6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions solidus_gateway.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ Gem::Specification.new do |s|

s.add_dependency "solidus_core", "~> 1.1"

# ActiveMerchant v1.58 through at least v1.59 has this bug:
# https://github.com/activemerchant/active_merchant/pull/2098
s.add_dependency "activemerchant", ">= 1.48.0", "< 1.58.0"
# ActiveMerchant v1.58 through v1.59 introduced a breaking change
# to the stripe gateway.
#
# This was resolved in v1.60, but we still need to skip 1.58 & 1.59.
s.add_dependency "activemerchant", "~> 1.48", "!= 1.58.0", "!= 1.59.0"

s.add_development_dependency "braintree", "~> 2.0"
s.add_development_dependency "rspec-rails", "~> 3.2"
Expand Down

0 comments on commit fce7ce6

Please sign in to comment.