stripe-rails 2.3.4 → 2.3.5
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/Changelog.md +5 -0
- data/lib/stripe/engine.rb +1 -1
- data/lib/stripe/rails/version.rb +1 -1
- data/test/plan_builder_spec.rb +4 -4
- data/test/price_builder_spec.rb +4 -4
- data/test/spec_helper.rb +1 -1
- data/test/stripe_initializers_spec.rb +11 -5
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0689a9e336780e3cfdd44afb914a5f5162e1ffa00f458f43e91b0f325b07be3
|
4
|
+
data.tar.gz: 74b39a714aea039928fcd94636c080a7ec8cb222a2f3e3a41823285e3c434c25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5ecf2a6c8812ec03b8accd5ab8453a1a3836dee7b6127692f29f7886a737795027f6f1905a25d68f59afecfc38ac9203d7f01941c133a3f2a80c6d8efeaf51a
|
7
|
+
data.tar.gz: 10a572f102d2670274dc12868993bfc5c10ba555ef0cc342c081f2569117cb928ea1e6c4a87726b6a1b901cabeee305ff8a7437ae0b4d7515ff0c8016d0e8b3c
|
data/Changelog.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
## Unreleased
|
2
2
|
|
3
|
+
## 2.3.5 (2022-10-01)
|
4
|
+
|
5
|
+
- Fix some deprecation warnings in tests. Thanks @smtlaissezfaire !
|
6
|
+
- Fix `NameError when loading JavascriptHelper`. Thanks @smtlaissezfaire !
|
7
|
+
|
3
8
|
## 2.3.4 (2022-05-03)
|
4
9
|
|
5
10
|
- Add setup_intent.canceled and setup_intent.requires_action callbacks. Thanks @jamesjason !
|
data/lib/stripe/engine.rb
CHANGED
data/lib/stripe/rails/version.rb
CHANGED
data/test/plan_builder_spec.rb
CHANGED
@@ -307,7 +307,7 @@ describe 'building plans' do
|
|
307
307
|
|
308
308
|
describe 'when passed invalid arguments for tiered pricing' do
|
309
309
|
it 'raises a Stripe::InvalidConfigurationError when billing tiers are invalid' do
|
310
|
-
lambda {
|
310
|
+
_(lambda {
|
311
311
|
Stripe.plan "Bad Tiers".to_sym do |plan|
|
312
312
|
plan.name = 'Acme as a service BAD TIERS'
|
313
313
|
plan.constant_name = 'BAD_TIERS'
|
@@ -328,11 +328,11 @@ describe 'building plans' do
|
|
328
328
|
}
|
329
329
|
]
|
330
330
|
end
|
331
|
-
}.must_raise Stripe::InvalidConfigurationError
|
331
|
+
}).must_raise Stripe::InvalidConfigurationError
|
332
332
|
end
|
333
333
|
|
334
334
|
it 'raises a Stripe::InvalidConfigurationError when billing tiers is not an array' do
|
335
|
-
lambda {
|
335
|
+
_(lambda {
|
336
336
|
Stripe.plan "Bad Tiers".to_sym do |plan|
|
337
337
|
plan.name = 'Acme as a service BAD TIERS'
|
338
338
|
plan.constant_name = 'BAD_TIERS'
|
@@ -348,7 +348,7 @@ describe 'building plans' do
|
|
348
348
|
up_to: 10
|
349
349
|
}
|
350
350
|
end
|
351
|
-
}.must_raise Stripe::InvalidConfigurationError
|
351
|
+
}).must_raise Stripe::InvalidConfigurationError
|
352
352
|
end
|
353
353
|
end
|
354
354
|
|
data/test/price_builder_spec.rb
CHANGED
@@ -392,7 +392,7 @@ describe 'building prices' do
|
|
392
392
|
|
393
393
|
describe 'when passed invalid arguments for tiered pricing' do
|
394
394
|
it 'raises a Stripe::InvalidConfigurationError when billing tiers are invalid' do
|
395
|
-
lambda {
|
395
|
+
_(lambda {
|
396
396
|
Stripe.price "Bad Tiers".to_sym do |price|
|
397
397
|
price.name = 'Acme as a service BAD TIERS'
|
398
398
|
price.constant_name = 'BAD_TIERS'
|
@@ -414,11 +414,11 @@ describe 'building prices' do
|
|
414
414
|
}
|
415
415
|
]
|
416
416
|
end
|
417
|
-
}.must_raise Stripe::InvalidConfigurationError
|
417
|
+
}).must_raise Stripe::InvalidConfigurationError
|
418
418
|
end
|
419
419
|
|
420
420
|
it 'raises a Stripe::InvalidConfigurationError when billing tiers is not an array' do
|
421
|
-
lambda {
|
421
|
+
_(lambda {
|
422
422
|
Stripe.price "Bad Tiers".to_sym do |price|
|
423
423
|
price.name = 'Acme as a service BAD TIERS'
|
424
424
|
price.constant_name = 'BAD_TIERS'
|
@@ -435,7 +435,7 @@ describe 'building prices' do
|
|
435
435
|
up_to: 10
|
436
436
|
}
|
437
437
|
end
|
438
|
-
}.must_raise Stripe::InvalidConfigurationError
|
438
|
+
}).must_raise Stripe::InvalidConfigurationError
|
439
439
|
end
|
440
440
|
end
|
441
441
|
|
data/test/spec_helper.rb
CHANGED
@@ -4,12 +4,18 @@ describe "Configuring the stripe engine" do
|
|
4
4
|
i_suck_and_my_tests_are_order_dependent! # the default test must be run first!
|
5
5
|
|
6
6
|
# NOTE: skipped `stripe.plans_and_coupons` to prevent warnings about constants
|
7
|
-
STRIPE_INITIALIZER_NAMES = %w{
|
7
|
+
STRIPE_INITIALIZER_NAMES = %w{
|
8
|
+
stripe.configure.defaults
|
9
|
+
stripe.configure
|
10
|
+
stripe.callbacks.eager_load
|
11
|
+
}
|
8
12
|
|
9
13
|
let(:app) { Rails.application }
|
10
14
|
let(:initializers) { STRIPE_INITIALIZER_NAMES.map{|name| app.initializers.find{|ini| ini.name == name } } }
|
11
15
|
|
12
|
-
def rerun_initializers
|
16
|
+
def rerun_initializers!
|
17
|
+
initializers.each { |init| init.run(app) }
|
18
|
+
end
|
13
19
|
|
14
20
|
after do
|
15
21
|
Stripe.api_version = nil
|
@@ -60,11 +66,11 @@ describe "Configuring the stripe engine" do
|
|
60
66
|
it "supports nil signing_secret" do
|
61
67
|
subject
|
62
68
|
|
63
|
-
app.config.stripe.signing_secret
|
69
|
+
app.config.stripe.signing_secret = nil
|
64
70
|
rerun_initializers!
|
65
71
|
|
66
|
-
|
67
|
-
|
72
|
+
assert_nil app.config.stripe.signing_secret
|
73
|
+
assert_nil app.config.stripe.signing_secrets
|
68
74
|
end
|
69
75
|
|
70
76
|
it "supports multiple signing secrets" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stripe-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charles Lowell
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-
|
13
|
+
date: 2022-10-01 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -188,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
188
|
- !ruby/object:Gem::Version
|
189
189
|
version: '0'
|
190
190
|
requirements: []
|
191
|
-
rubygems_version: 3.
|
191
|
+
rubygems_version: 3.3.18
|
192
192
|
signing_key:
|
193
193
|
specification_version: 4
|
194
194
|
summary: A gem to integrate stripe into your rails app
|