Skip to content

Commit

Permalink
Added support for Stripe 13
Browse files Browse the repository at this point in the history
  • Loading branch information
schinery committed Oct 3, 2024
1 parent 3af4725 commit cd535a0
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 @@ -25,6 +25,7 @@ jobs:
- stripe10
- stripe11
- stripe12
- stripe13
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 @@ -71,6 +71,10 @@ appraise "stripe12" do
gem "stripe", "~> 12.0"
end

appraise "stripe13" do
gem "stripe", "~> 13.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 13 support (#169)

### 2.10.0 (Jun 28, 2024)

Expand Down
7 changes: 7 additions & 0 deletions gemfiles/stripe13.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", "~> 13.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", "< 13"]
s.add_dependency "stripe", [">= 2.8", "< 14"]

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

0 comments on commit cd535a0

Please sign in to comment.