stripe_event 2.13.0 → 2.14.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 +1 -0
- data/Appraisals +4 -0
- data/CHANGELOG.md +3 -0
- data/README.md +0 -1
- data/gemfiles/stripe18.gemfile +7 -0
- data/lib/stripe_event/version.rb +1 -1
- data/stripe_event.gemspec +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dac4d1bfce7153d34816b5fd24cc39a19c6824f18ca043d94465745809aff46f
|
|
4
|
+
data.tar.gz: 6ee589311d9e2060c91195cd3bbf33bd781b64fc91f93e5ab6df74fb67859bfc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07df1fab0aed8d62afd936fd3c6824ce3c2dec79ed2f97e38097005dfdcd9ee1f2d63e259fe5d5db4ac3dca67bbd0fe4c158db19e532eed58150371ae5d89f8b
|
|
7
|
+
data.tar.gz: 59fb27a41de5494eb863b58ab9f73cbd2cded93683168560c1fdcef74f0448c179d82d88daa5f60912dfd42e58eb972851a2cf8d48d0a4a7c58bc495e7ef595f
|
data/.github/workflows/ci.yml
CHANGED
data/Appraisals
CHANGED
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", "< 19"]
|
|
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.14.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: '19'
|
|
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: '19'
|
|
46
46
|
- !ruby/object:Gem::Dependency
|
|
47
47
|
name: appraisal
|
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -151,6 +151,7 @@ files:
|
|
|
151
151
|
- gemfiles/stripe15.gemfile
|
|
152
152
|
- gemfiles/stripe16.gemfile
|
|
153
153
|
- gemfiles/stripe17.gemfile
|
|
154
|
+
- gemfiles/stripe18.gemfile
|
|
154
155
|
- gemfiles/stripe3.gemfile
|
|
155
156
|
- gemfiles/stripe4.gemfile
|
|
156
157
|
- gemfiles/stripe5.gemfile
|
|
@@ -217,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
217
218
|
- !ruby/object:Gem::Version
|
|
218
219
|
version: '0'
|
|
219
220
|
requirements: []
|
|
220
|
-
rubygems_version:
|
|
221
|
+
rubygems_version: 4.0.1
|
|
221
222
|
specification_version: 4
|
|
222
223
|
summary: Stripe webhook integration for Rails applications.
|
|
223
224
|
test_files:
|
|
@@ -242,6 +243,7 @@ test_files:
|
|
|
242
243
|
- gemfiles/stripe15.gemfile
|
|
243
244
|
- gemfiles/stripe16.gemfile
|
|
244
245
|
- gemfiles/stripe17.gemfile
|
|
246
|
+
- gemfiles/stripe18.gemfile
|
|
245
247
|
- gemfiles/stripe3.gemfile
|
|
246
248
|
- gemfiles/stripe4.gemfile
|
|
247
249
|
- gemfiles/stripe5.gemfile
|