pay 8.0.0 → 8.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 785afa1f8e3c9c0306a572d25e18a26c91ef44dd02549f1ab332ccc528586f69
4
- data.tar.gz: 004d09453ad0180666f3f4b14da51f76e66e0956adc4119b1171b44555a9f1f7
3
+ metadata.gz: b493128b8cda84a754699e14ae59d19c88948998591ba8e52494c201c4af12ad
4
+ data.tar.gz: 85cdd057383abbd32ae348f0f05951f93a77dabf3221c220bdd6fa415fbf7c9f
5
5
  SHA512:
6
- metadata.gz: 78ec12fabf38197f4317db716ba2ef1c389c3f96f94a9bad2603821ee4d7fa19268c315f51106d4793052824ed61311110f7be1e7e568e3a2dcb5b32e1d3a18f
7
- data.tar.gz: f486f57a001aabad0b149e37f675287aafbd1829f94d1a1d30a92e54cde1558d5bdcbbedc209ed213a6f483d1ee400230de7d38a55ff00638f0c9f19fd5d2ed9
6
+ metadata.gz: 56b5fdcb946e5f951a6169e61f954abcdb8a1f3e56bfbd0627752660305ec6ebe143837d014a8c6113e377a17ad46185232b0d0f18c0e81014b73271caafee36
7
+ data.tar.gz: 3e3c5a3ae2664590ffa99a09c6e3ffbd9a622a0972509509cb020e78491e0993346801c0918f59978f4ebf241723e743beb99dd273ac29c11b06f6da61c1bfa2
@@ -191,7 +191,7 @@ module Pay
191
191
 
192
192
  def discount_for_switching_to_monthly(current_plan, plan)
193
193
  cycles = (money_remaining_on_yearly_plan(current_plan) / plan.price).floor
194
- OpenStruct.new(
194
+ ActiveSupport::InheritableOptions.new(
195
195
  amount: plan.price,
196
196
  number_of_billing_cycles: cycles
197
197
  )
@@ -209,7 +209,7 @@ module Pay
209
209
  end
210
210
  end
211
211
 
212
- OpenStruct.new(amount: amount, number_of_billing_cycles: 1)
212
+ ActiveSupport::InheritableOptions.new(amount: amount, number_of_billing_cycles: 1)
213
213
  end
214
214
 
215
215
  def swap_across_frequencies(plan)
@@ -332,7 +332,7 @@ module Pay
332
332
 
333
333
  # Retries the latest invoice for a Past Due subscription and attempts to pay it
334
334
  def retry_failed_payment(payment_intent_id: nil)
335
- payment_intent_id ||= subscription.latest_invoice.payment_intent.id
335
+ payment_intent_id ||= api_record.latest_invoice.payment_intent.id
336
336
  payment_intent = ::Stripe::PaymentIntent.retrieve({id: payment_intent_id}, stripe_options)
337
337
 
338
338
  payment_intent = if payment_intent.status == "requires_payment_method"
@@ -32,7 +32,7 @@ module Pay
32
32
 
33
33
  def to_recursive_ostruct(obj)
34
34
  if obj.is_a?(Hash)
35
- OpenStruct.new(obj.map { |key, val| [key, to_recursive_ostruct(val)] }.to_h)
35
+ ActiveSupport::InheritableOptions.new(obj.map { |key, val| [key.to_sym, to_recursive_ostruct(val)] }.to_h)
36
36
  elsif obj.is_a?(Array)
37
37
  obj.map { |o| to_recursive_ostruct(o) }
38
38
  else # Assumed to be a primitive value
data/lib/pay/stripe.rb CHANGED
@@ -27,7 +27,7 @@ module Pay
27
27
 
28
28
  extend Env
29
29
 
30
- REQUIRED_VERSION = "~> 12"
30
+ REQUIRED_VERSION = "~> 13"
31
31
 
32
32
  # A list of database model names that include Pay
33
33
  # Used for safely looking up models with client_reference_id
data/lib/pay/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pay
2
- VERSION = "8.0.0"
2
+ VERSION = "8.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pay
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.0.0
4
+ version: 8.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Charnes
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-09-23 00:00:00.000000000 Z
13
+ date: 2024-10-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
@@ -180,7 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
180
180
  - !ruby/object:Gem::Version
181
181
  version: '0'
182
182
  requirements: []
183
- rubygems_version: 3.5.16
183
+ rubygems_version: 3.5.18
184
184
  signing_key:
185
185
  specification_version: 4
186
186
  summary: Payments engine for Ruby on Rails