stripe_event 2.13.0 → 2.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +4 -2
- data/Appraisals +8 -0
- data/CHANGELOG.md +8 -0
- data/README.md +0 -1
- data/gemfiles/stripe18.gemfile +7 -0
- data/gemfiles/stripe19.gemfile +7 -0
- data/lib/stripe_event/version.rb +1 -1
- data/stripe_event.gemspec +1 -1
- metadata +8 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: adb5bd3e3d489509a052e173321343e198baee9e0bae59b5e3acdefeb97a81db
|
|
4
|
+
data.tar.gz: 53be77cc569f7025df032c0fb27361195157c57f90ee624524bc52e1911d4d5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '089fbca4660837a022b1f47d7232ef22699ddd1b771713010f88de6b0dd269b74f3164aae9c2b3baef1e32c66420e2d8d787193a36e795e5a81d37a5214d660a'
|
|
7
|
+
data.tar.gz: a901fca280621e9726f3e773fd4ee46a8eca17642899f77bcb94493ebaec910b84105fb0a16a606246432bbec1aa7069558c3dfda53fb7212b1519942ffa3b18
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -10,7 +10,7 @@ jobs:
|
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
strategy:
|
|
12
12
|
matrix:
|
|
13
|
-
ruby: ["3.2", "3.3", "3.4"]
|
|
13
|
+
ruby: ["3.2", "3.3", "3.4", "4.0"]
|
|
14
14
|
bundler: [default]
|
|
15
15
|
gemfile:
|
|
16
16
|
- rails7.1
|
|
@@ -30,6 +30,8 @@ jobs:
|
|
|
30
30
|
- stripe15
|
|
31
31
|
- stripe16
|
|
32
32
|
- stripe17
|
|
33
|
+
- stripe18
|
|
34
|
+
- stripe19
|
|
33
35
|
include:
|
|
34
36
|
- { ruby: "2.3", gemfile: "rails3.2", bundler: "1" }
|
|
35
37
|
- { ruby: "2.5", gemfile: "rails5.1", bundler: "default" }
|
|
@@ -51,7 +53,7 @@ jobs:
|
|
|
51
53
|
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
|
52
54
|
steps:
|
|
53
55
|
# https://github.com/marketplace/actions/checkout
|
|
54
|
-
- uses: actions/checkout@
|
|
56
|
+
- uses: actions/checkout@v6
|
|
55
57
|
# https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
|
56
58
|
- name: Set up Ruby
|
|
57
59
|
uses: ruby/setup-ruby@v1
|
data/Appraisals
CHANGED
|
@@ -103,6 +103,14 @@ appraise "stripe17" do
|
|
|
103
103
|
gem "stripe", "~> 17.0"
|
|
104
104
|
end
|
|
105
105
|
|
|
106
|
+
appraise "stripe18" do
|
|
107
|
+
gem "stripe", "~> 18.0"
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
appraise "stripe19" do
|
|
111
|
+
gem "stripe", "~> 19.0"
|
|
112
|
+
end
|
|
113
|
+
|
|
106
114
|
appraise "rails_master" do
|
|
107
115
|
gem "rails", github: "rails"
|
|
108
116
|
end
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/integrallis/stripe_event/actions?query=workflow%3ACI)
|
|
4
4
|
[](http://badge.fury.io/rb/stripe_event)
|
|
5
|
-
[](https://codeclimate.com/github/integrallis/stripe_event)
|
|
6
5
|
[](https://rubygems.org/gems/stripe_event)
|
|
7
6
|
|
|
8
7
|
StripeEvent is built on the [ActiveSupport::Notifications API](http://api.rubyonrails.org/classes/ActiveSupport/Notifications.html). Incoming webhook requests are [authenticated with the webhook signature](#authenticating-webhooks-with-signatures). Define subscribers to handle specific event types. Subscribers can be a block or an object that responds to `#call`.
|
data/lib/stripe_event/version.rb
CHANGED
data/stripe_event.gemspec
CHANGED
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
|
18
18
|
s.test_files = `git ls-files -- Appraisals {spec,gemfiles}/*`.split("\n")
|
|
19
19
|
|
|
20
20
|
s.add_dependency "activesupport", ">= 3.1"
|
|
21
|
-
s.add_dependency "stripe", [">= 2.8", "<
|
|
21
|
+
s.add_dependency "stripe", [">= 2.8", "< 20"]
|
|
22
22
|
|
|
23
23
|
s.add_development_dependency "appraisal"
|
|
24
24
|
s.add_development_dependency "rails", [">= 3.1"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stripe_event
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.15.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Danny Whalen
|
|
@@ -32,7 +32,7 @@ dependencies:
|
|
|
32
32
|
version: '2.8'
|
|
33
33
|
- - "<"
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: '
|
|
35
|
+
version: '20'
|
|
36
36
|
type: :runtime
|
|
37
37
|
prerelease: false
|
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -42,7 +42,7 @@ dependencies:
|
|
|
42
42
|
version: '2.8'
|
|
43
43
|
- - "<"
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
|
-
version: '
|
|
45
|
+
version: '20'
|
|
46
46
|
- !ruby/object:Gem::Dependency
|
|
47
47
|
name: appraisal
|
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -151,6 +151,8 @@ files:
|
|
|
151
151
|
- gemfiles/stripe15.gemfile
|
|
152
152
|
- gemfiles/stripe16.gemfile
|
|
153
153
|
- gemfiles/stripe17.gemfile
|
|
154
|
+
- gemfiles/stripe18.gemfile
|
|
155
|
+
- gemfiles/stripe19.gemfile
|
|
154
156
|
- gemfiles/stripe3.gemfile
|
|
155
157
|
- gemfiles/stripe4.gemfile
|
|
156
158
|
- gemfiles/stripe5.gemfile
|
|
@@ -217,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
217
219
|
- !ruby/object:Gem::Version
|
|
218
220
|
version: '0'
|
|
219
221
|
requirements: []
|
|
220
|
-
rubygems_version:
|
|
222
|
+
rubygems_version: 4.0.9
|
|
221
223
|
specification_version: 4
|
|
222
224
|
summary: Stripe webhook integration for Rails applications.
|
|
223
225
|
test_files:
|
|
@@ -242,6 +244,8 @@ test_files:
|
|
|
242
244
|
- gemfiles/stripe15.gemfile
|
|
243
245
|
- gemfiles/stripe16.gemfile
|
|
244
246
|
- gemfiles/stripe17.gemfile
|
|
247
|
+
- gemfiles/stripe18.gemfile
|
|
248
|
+
- gemfiles/stripe19.gemfile
|
|
245
249
|
- gemfiles/stripe3.gemfile
|
|
246
250
|
- gemfiles/stripe4.gemfile
|
|
247
251
|
- gemfiles/stripe5.gemfile
|