stripe_event 2.3.2 → 2.4.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 +19 -6
- data/Appraisals +8 -0
- data/CHANGELOG.md +7 -0
- data/gemfiles/rails7.0.gemfile +7 -0
- data/gemfiles/stripe6.gemfile +7 -0
- data/lib/stripe_event/version.rb +1 -1
- data/stripe_event.gemspec +1 -1
- metadata +12 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24784862569e458b05d7c6fcbb6f06fe7dffbca6f72aea86ac0563f11bedf134
|
4
|
+
data.tar.gz: f9628159d783d831f826f43885efba0cc4748c306d7513e0d0a0c2f36704c3f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b71b8f0ec702b4c292f508e7bb5b5ddc5c2f2ae3f1d238ca46b046dfbe9cc69127215e3d2e77156c26982e43aeec97c62c12beb90eb9d166e0ce6f1193d81800
|
7
|
+
data.tar.gz: 52d0c8a926be01d59e99d4c83dd0d55c2c8ab053c937980708a39556acaf200928f5a59861d44c9dd800f99aa43227b8cc5d03303e73bd64398e96943bcc8429
|
data/.github/workflows/ci.yml
CHANGED
@@ -1,25 +1,38 @@
|
|
1
1
|
name: CI
|
2
|
-
on:
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches: [master]
|
5
|
+
pull_request:
|
6
|
+
branches: [master]
|
3
7
|
|
4
8
|
jobs:
|
5
9
|
test:
|
6
10
|
runs-on: ubuntu-latest
|
7
11
|
strategy:
|
8
12
|
matrix:
|
9
|
-
ruby: ["2.
|
13
|
+
ruby: ["2.7", "3.0", "3.1"]
|
10
14
|
bundler: [default]
|
11
15
|
gemfile:
|
12
|
-
- rails5.1
|
13
|
-
- rails5.2
|
14
16
|
- rails6.0
|
15
17
|
- rails6.1
|
16
|
-
-
|
17
|
-
- stripe4
|
18
|
+
- rails7.0
|
18
19
|
- stripe5
|
20
|
+
- stripe6
|
19
21
|
include:
|
20
22
|
- { ruby: "2.3", gemfile: "rails3.2", bundler: "1" }
|
21
23
|
- { ruby: "2.3", gemfile: "rails4.2", bundler: "1" }
|
22
24
|
- { ruby: "2.4", gemfile: "rails4.2", bundler: "1" }
|
25
|
+
- { ruby: "2.5", gemfile: "rails5.1", bundler: "default" }
|
26
|
+
- { ruby: "2.5", gemfile: "rails5.2", bundler: "default" }
|
27
|
+
- { ruby: "2.6", gemfile: "rails5.2", bundler: "default" }
|
28
|
+
- { ruby: "2.6", gemfile: "rails6.0", bundler: "default" }
|
29
|
+
- { ruby: "2.6", gemfile: "rails6.1", bundler: "default" }
|
30
|
+
- { ruby: "2.5", gemfile: "stripe3", bundler: "default" }
|
31
|
+
- { ruby: "2.6", gemfile: "stripe3", bundler: "default" }
|
32
|
+
- { ruby: "2.7", gemfile: "stripe3", bundler: "default" }
|
33
|
+
- { ruby: "2.5", gemfile: "stripe4", bundler: "default" }
|
34
|
+
- { ruby: "2.6", gemfile: "stripe4", bundler: "default" }
|
35
|
+
- { ruby: "2.7", gemfile: "stripe4", bundler: "default" }
|
23
36
|
|
24
37
|
env:
|
25
38
|
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
data/Appraisals
CHANGED
@@ -23,6 +23,10 @@ appraise "rails6.1" do
|
|
23
23
|
gem "rails", "~> 6.1.0"
|
24
24
|
end
|
25
25
|
|
26
|
+
appraise "rails7.0" do
|
27
|
+
gem "rails", "~> 7.0.0"
|
28
|
+
end
|
29
|
+
|
26
30
|
appraise "stripe3" do
|
27
31
|
gem "stripe", "~> 3.0"
|
28
32
|
end
|
@@ -35,6 +39,10 @@ appraise "stripe5" do
|
|
35
39
|
gem "stripe", "~> 5.0"
|
36
40
|
end
|
37
41
|
|
42
|
+
appraise "stripe6" do
|
43
|
+
gem "stripe", "~> 6.0"
|
44
|
+
end
|
45
|
+
|
38
46
|
appraise "rails_master" do
|
39
47
|
gem "rails", github: "rails"
|
40
48
|
end
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
### 2.4.0 (May 12, 2022)
|
2
|
+
|
3
|
+
- Add Stripe 6 support (#151)
|
4
|
+
- Add Rails 7 support (#151)
|
5
|
+
- Add Ruby 3.1 support (#152)
|
6
|
+
- Improved build matrix
|
7
|
+
|
1
8
|
### 2.3.2 (February 21, 2022)
|
2
9
|
|
3
10
|
- Fix signature validation error if the first signing secret is nil (#146)
|
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", "< 7"]
|
22
22
|
|
23
23
|
s.add_development_dependency "appraisal"
|
24
24
|
s.add_development_dependency "coveralls"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stripe_event
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danny Whalen
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '2.8'
|
34
34
|
- - "<"
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: '
|
36
|
+
version: '7'
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '2.8'
|
44
44
|
- - "<"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
46
|
+
version: '7'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: appraisal
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -152,10 +152,12 @@ files:
|
|
152
152
|
- gemfiles/rails5.2.gemfile
|
153
153
|
- gemfiles/rails6.0.gemfile
|
154
154
|
- gemfiles/rails6.1.gemfile
|
155
|
+
- gemfiles/rails7.0.gemfile
|
155
156
|
- gemfiles/rails_master.gemfile
|
156
157
|
- gemfiles/stripe3.gemfile
|
157
158
|
- gemfiles/stripe4.gemfile
|
158
159
|
- gemfiles/stripe5.gemfile
|
160
|
+
- gemfiles/stripe6.gemfile
|
159
161
|
- lib/stripe_event.rb
|
160
162
|
- lib/stripe_event/engine.rb
|
161
163
|
- lib/stripe_event/version.rb
|
@@ -201,7 +203,7 @@ homepage: https://github.com/integrallis/stripe_event
|
|
201
203
|
licenses:
|
202
204
|
- MIT
|
203
205
|
metadata: {}
|
204
|
-
post_install_message:
|
206
|
+
post_install_message:
|
205
207
|
rdoc_options: []
|
206
208
|
require_paths:
|
207
209
|
- lib
|
@@ -216,8 +218,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
216
218
|
- !ruby/object:Gem::Version
|
217
219
|
version: '0'
|
218
220
|
requirements: []
|
219
|
-
rubygems_version: 3.3.
|
220
|
-
signing_key:
|
221
|
+
rubygems_version: 3.3.12
|
222
|
+
signing_key:
|
221
223
|
specification_version: 4
|
222
224
|
summary: Stripe webhook integration for Rails applications.
|
223
225
|
test_files:
|
@@ -228,10 +230,12 @@ test_files:
|
|
228
230
|
- gemfiles/rails5.2.gemfile
|
229
231
|
- gemfiles/rails6.0.gemfile
|
230
232
|
- gemfiles/rails6.1.gemfile
|
233
|
+
- gemfiles/rails7.0.gemfile
|
231
234
|
- gemfiles/rails_master.gemfile
|
232
235
|
- gemfiles/stripe3.gemfile
|
233
236
|
- gemfiles/stripe4.gemfile
|
234
237
|
- gemfiles/stripe5.gemfile
|
238
|
+
- gemfiles/stripe6.gemfile
|
235
239
|
- spec/controllers/webhook_controller_spec.rb
|
236
240
|
- spec/dummy/README.rdoc
|
237
241
|
- spec/dummy/Rakefile
|