pay-abacatepay 0.1.0.pre.1 → 0.1.0.pre.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e2ab67254ae39892abe3501a42c66727a625849a722fb619264986e9956194f9
4
- data.tar.gz: 12af82bfd3ec2b1caf6fbcc980cbfa42bca571af77abdb2e6b1d15d1ed58e2a3
3
+ metadata.gz: fe474c02462ff77be3f7be6764e4d15cc872b3dbede87cb89d82d1953f0c0cb5
4
+ data.tar.gz: 8d0fcdf3c260ffa42c1e68a0d61fee0d44e38d970f0cd419aad2bd7bfeb1db22
5
5
  SHA512:
6
- metadata.gz: fe3d6ac447067fa8ea24479b282456f4de5a46c01acf556c3b17a1f826c00bc752bb3a948cb87b51f5e3fc967fb700221e51524a674782ae1b7dea61bee9617c
7
- data.tar.gz: 56e74d4a3213b2036dd02dbb57cf72e2e8e78bc5d3a85a845a05e9f544a6b4e8500edb83ca6009898bc35ded6b02b945249853c5160bef61539d3c6e6b8a231d
6
+ metadata.gz: 1b7e2a27e0a2bd70ac20aec7f849b064c6f9320d6aded190a933d7997642a7869861f8278ff5f6d8fb4ce64134d65542bb10e0af29974d91f77ec7dcbdab232c
7
+ data.tar.gz: fa01c8d9c60a6eee16006540c74b85a4bc0ccc6bce9418ce67b0eecbcee1a2ca2db9e8d37a1c67e3eb2027a9978d78897365c3dfb674f91e89c8f2f7c7af3ee3
@@ -1,5 +1,5 @@
1
1
  module Pay
2
2
  module Abacatepay
3
- VERSION = "0.1.0.pre.1"
3
+ VERSION = "0.1.0.pre.2"
4
4
  end
5
5
  end
@@ -12,11 +12,10 @@ module Pay
12
12
 
13
13
  extend Pay::Env
14
14
 
15
- autoload :Charge, "pay/abacatepay/charge"
16
- autoload :Customer, "pay/abacatepay/customer"
17
- autoload :PaymentMethod, "pay/abacatepay/payment_method"
18
- autoload :ProcessedWebhook, "pay/abacatepay/processed_webhook"
19
- autoload :Subscription, "pay/abacatepay/subscription"
15
+ # AR models (Charge, Customer, PaymentMethod, ProcessedWebhook, Subscription)
16
+ # live in app/models/pay/abacatepay/ — Zeitwerk autoloads them from the host
17
+ # app, which is required so STI subclasses get reloaded together with their
18
+ # superclass (Pay::Customer/Charge/...) during dev reloads.
20
19
  autoload :Webhooks, "pay/abacatepay/webhooks"
21
20
 
22
21
  # Enabled when the processor is registered and the SDK constant is present.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pay-abacatepay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.1
4
+ version: 0.1.0.pre.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Moreira
@@ -49,16 +49,16 @@ files:
49
49
  - MIT-LICENSE
50
50
  - README.md
51
51
  - app/controllers/pay/webhooks/abacatepay_controller.rb
52
+ - app/models/pay/abacatepay/charge.rb
53
+ - app/models/pay/abacatepay/customer.rb
54
+ - app/models/pay/abacatepay/payment_method.rb
55
+ - app/models/pay/abacatepay/processed_webhook.rb
56
+ - app/models/pay/abacatepay/subscription.rb
52
57
  - lib/generators/pay_abacatepay/install/install_generator.rb
53
58
  - lib/generators/pay_abacatepay/install/templates/create_pay_abacatepay_processed_webhooks.rb.tt
54
59
  - lib/pay-abacatepay.rb
55
60
  - lib/pay/abacatepay.rb
56
- - lib/pay/abacatepay/charge.rb
57
- - lib/pay/abacatepay/customer.rb
58
61
  - lib/pay/abacatepay/engine.rb
59
- - lib/pay/abacatepay/payment_method.rb
60
- - lib/pay/abacatepay/processed_webhook.rb
61
- - lib/pay/abacatepay/subscription.rb
62
62
  - lib/pay/abacatepay/version.rb
63
63
  - lib/pay/abacatepay/webhooks.rb
64
64
  - lib/pay/abacatepay/webhooks/checkout_completed.rb
@@ -78,13 +78,13 @@ files:
78
78
  - lib/pay/abacatepay/webhooks/transparent_disputed.rb
79
79
  - lib/pay/abacatepay/webhooks/transparent_lost.rb
80
80
  - lib/pay/abacatepay/webhooks/transparent_refunded.rb
81
- homepage: https://github.com/danielmoreira/pay-abacatepay
81
+ homepage: https://github.com/academia-ruby/pay-abacatepay
82
82
  licenses:
83
83
  - MIT
84
84
  metadata:
85
- homepage_uri: https://github.com/danielmoreira/pay-abacatepay
86
- source_code_uri: https://github.com/danielmoreira/pay-abacatepay
87
- changelog_uri: https://github.com/danielmoreira/pay-abacatepay/blob/main/CHANGELOG.md
85
+ homepage_uri: https://github.com/academia-ruby/pay-abacatepay
86
+ source_code_uri: https://github.com/academia-ruby/pay-abacatepay
87
+ changelog_uri: https://github.com/academia-ruby/pay-abacatepay/blob/main/CHANGELOG.md
88
88
  rdoc_options: []
89
89
  require_paths:
90
90
  - lib
File without changes
File without changes
File without changes