Skip to content

Commit

Permalink
Merge pull request #163 from oboxodo/stripe10
Browse files Browse the repository at this point in the history
Add support for stripe 9 and 10
  • Loading branch information
rmm5t committed Mar 18, 2024
2 parents fa1db30 + c734d4a commit 3d64a4c
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -20,6 +20,8 @@ jobs:
- stripe6
- stripe7
- stripe8
- stripe9
- stripe10
include:
- { ruby: "2.3", gemfile: "rails3.2", bundler: "1" }
- { ruby: "2.5", gemfile: "rails5.1", bundler: "default" }
Expand Down
8 changes: 8 additions & 0 deletions Appraisals
Expand Up @@ -51,6 +51,14 @@ appraise "stripe8" do
gem "stripe", "~> 8.0"
end

appraise "stripe9" do
gem "stripe", "~> 9.0"
end

appraise "stripe10" do
gem "stripe", "~> 10.0"
end

appraise "rails_master" do
gem "rails", github: "rails"
end
2 changes: 2 additions & 0 deletions CHANGELOG.md
@@ -1,4 +1,6 @@
### [Unreleased] - TBD
- Add Stripe 9 support (#162)
- Add Stripe 10 support (#163)

### 2.7.0 (Nov 27, 2022)

Expand Down
7 changes: 7 additions & 0 deletions gemfiles/stripe10.gemfile
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "stripe", "~> 10.0"

gemspec path: "../"
7 changes: 7 additions & 0 deletions gemfiles/stripe9.gemfile
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "stripe", "~> 9.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion stripe_event.gemspec
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
s.test_files = `git ls-files -- Appraisals {spec,gemfiles}/*`.split("\n")

s.add_dependency "activesupport", ">= 3.1"
s.add_dependency "stripe", [">= 2.8", "< 9"]
s.add_dependency "stripe", [">= 2.8", "< 11"]

s.add_development_dependency "appraisal"
s.add_development_dependency "coveralls"
Expand Down

0 comments on commit 3d64a4c

Please sign in to comment.