Skip to content

Commit

Permalink
Added support for Stripe 12
Browse files Browse the repository at this point in the history
  • Loading branch information
schinery committed Jun 25, 2024
1 parent f391619 commit 8c18ba7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- stripe9
- stripe10
- stripe11
- stripe12
include:
- { ruby: "2.3", gemfile: "rails3.2", bundler: "1" }
- { ruby: "2.5", gemfile: "rails5.1", bundler: "default" }
Expand Down
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ appraise "stripe11" do
gem "stripe", "~> 11.0"
end

appraise "stripe12" do
gem "stripe", "~> 12.0"
end

appraise "rails_master" do
gem "rails", github: "rails"
end
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### [Unreleased] - TBD

-
- Add Stripe 12 support (#167)

### 2.9.0 (Apr 22, 2024)

Expand Down
7 changes: 7 additions & 0 deletions gemfiles/stripe12.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "stripe", "~> 12.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion stripe_event.gemspec
Original file line number Diff line number Diff line change
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", "< 12"]
s.add_dependency "stripe", [">= 2.8", "< 13"]

s.add_development_dependency "appraisal"
s.add_development_dependency "rails", [">= 3.1"]
Expand Down

0 comments on commit 8c18ba7

Please sign in to comment.