recurly 2.18.4 → 2.18.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/README.md +1 -1
- data/lib/recurly/version.rb +1 -1
- data/lib/recurly/webhook.rb +6 -0
- data/lib/recurly/webhook/deactivated_item_notification.rb +6 -0
- data/lib/recurly/webhook/item_notification.rb +7 -0
- data/lib/recurly/webhook/new_item_notification.rb +6 -0
- data/lib/recurly/webhook/reactivated_item_notification.rb +6 -0
- data/lib/recurly/webhook/updated_item_notification.rb +6 -0
- metadata +7 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4baccdf365b116bf67d6881bfcb87895a1528baf6f265514167a7a727d072c88
|
|
4
|
+
data.tar.gz: 0d67d21fe66bcf7e1a9354d8f90715fe5c1141822600f84057ae9e504b406dca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5413f8214c2053c4d4b1965dd6c91844f1bb5b1dbf7f7b9da2f730096d37b69dacd1e5dde9292ad950783f17d13c1cb6e7d4505107a5c0e54179dd1587688cd3
|
|
7
|
+
data.tar.gz: e0cdd2a64396ed0cfeef2fb31f49e181c1dd1a8d5120a8f82e4053f8eadf47df9bd8815c551fc5999584f6dc88c03a12c5c9cc2e65d20efc07f29a898fcfd227
|
data/README.md
CHANGED
|
@@ -14,7 +14,7 @@ Recurly is packaged as a Ruby gem. We recommend you install it with
|
|
|
14
14
|
[Bundler](http://gembundler.com/) by adding the following line to your Gemfile:
|
|
15
15
|
|
|
16
16
|
``` ruby
|
|
17
|
-
gem 'recurly', '~> 2.18.
|
|
17
|
+
gem 'recurly', '~> 2.18.5'
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Recurly will automatically use [Nokogiri](http://nokogiri.org/) (for a nice
|
data/lib/recurly/version.rb
CHANGED
data/lib/recurly/webhook.rb
CHANGED
|
@@ -24,6 +24,7 @@ module Recurly
|
|
|
24
24
|
autoload :AccountNotification, 'recurly/webhook/account_notification'
|
|
25
25
|
autoload :SubscriptionNotification, 'recurly/webhook/subscription_notification'
|
|
26
26
|
autoload :InvoiceNotification, 'recurly/webhook/invoice_notification'
|
|
27
|
+
autoload :ItemNotification, 'recurly/webhook/item_notification'
|
|
27
28
|
autoload :TransactionNotification, 'recurly/webhook/transaction_notification'
|
|
28
29
|
autoload :DunningNotification, 'recurly/webhook/dunning_notification'
|
|
29
30
|
autoload :CreditPaymentNotification, 'recurly/webhook/credit_payment_notification'
|
|
@@ -84,6 +85,11 @@ module Recurly
|
|
|
84
85
|
autoload :UpdatedShippingAddressNotification, 'recurly/webhook/updated_shipping_address_notification'
|
|
85
86
|
autoload :DeletedShippingAddressNotification, 'recurly/webhook/deleted_shipping_address_notification'
|
|
86
87
|
autoload :FraudInfoUpdatedNotification, 'recurly/webhook/fraud_info_updated_notification'
|
|
88
|
+
autoload :NewItemNotification, 'recurly/webhook/new_item_notification'
|
|
89
|
+
autoload :UpdatedItemNotification, 'recurly/webhook/updated_item_notification'
|
|
90
|
+
autoload :DeactivatedItemNotification, 'recurly/webhook/deactivated_item_notification'
|
|
91
|
+
autoload :ReactivatedItemNotification, 'recurly/webhook/reactivated_item_notification'
|
|
92
|
+
|
|
87
93
|
# This exception is raised if the Webhook Notification initialization fails
|
|
88
94
|
class NotificationError < Error
|
|
89
95
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: recurly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.18.
|
|
4
|
+
version: 2.18.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Recurly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-11-
|
|
11
|
+
date: 2019-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -263,6 +263,7 @@ files:
|
|
|
263
263
|
- lib/recurly/webhook/closed_credit_invoice_notification.rb
|
|
264
264
|
- lib/recurly/webhook/closed_invoice_notification.rb
|
|
265
265
|
- lib/recurly/webhook/credit_payment_notification.rb
|
|
266
|
+
- lib/recurly/webhook/deactivated_item_notification.rb
|
|
266
267
|
- lib/recurly/webhook/deleted_shipping_address_notification.rb
|
|
267
268
|
- lib/recurly/webhook/dunning_notification.rb
|
|
268
269
|
- lib/recurly/webhook/expired_subscription_notification.rb
|
|
@@ -271,6 +272,7 @@ files:
|
|
|
271
272
|
- lib/recurly/webhook/fraud_info_updated_notification.rb
|
|
272
273
|
- lib/recurly/webhook/gift_card_notification.rb
|
|
273
274
|
- lib/recurly/webhook/invoice_notification.rb
|
|
275
|
+
- lib/recurly/webhook/item_notification.rb
|
|
274
276
|
- lib/recurly/webhook/low_balance_gift_card_notification.rb
|
|
275
277
|
- lib/recurly/webhook/new_account_notification.rb
|
|
276
278
|
- lib/recurly/webhook/new_charge_invoice_notification.rb
|
|
@@ -278,6 +280,7 @@ files:
|
|
|
278
280
|
- lib/recurly/webhook/new_credit_payment_notification.rb
|
|
279
281
|
- lib/recurly/webhook/new_dunning_event_notification.rb
|
|
280
282
|
- lib/recurly/webhook/new_invoice_notification.rb
|
|
283
|
+
- lib/recurly/webhook/new_item_notification.rb
|
|
281
284
|
- lib/recurly/webhook/new_shipping_address_notification.rb
|
|
282
285
|
- lib/recurly/webhook/new_subscription_notification.rb
|
|
283
286
|
- lib/recurly/webhook/new_usage_notification.rb
|
|
@@ -292,6 +295,7 @@ files:
|
|
|
292
295
|
- lib/recurly/webhook/processing_payment_notification.rb
|
|
293
296
|
- lib/recurly/webhook/purchased_gift_card_notification.rb
|
|
294
297
|
- lib/recurly/webhook/reactivated_account_notification.rb
|
|
298
|
+
- lib/recurly/webhook/reactivated_item_notification.rb
|
|
295
299
|
- lib/recurly/webhook/redeemed_gift_card_notification.rb
|
|
296
300
|
- lib/recurly/webhook/regenerated_gift_card_notification.rb
|
|
297
301
|
- lib/recurly/webhook/renewed_subscription_notification.rb
|
|
@@ -313,6 +317,7 @@ files:
|
|
|
313
317
|
- lib/recurly/webhook/updated_balance_gift_card_notification.rb
|
|
314
318
|
- lib/recurly/webhook/updated_gift_card_notification.rb
|
|
315
319
|
- lib/recurly/webhook/updated_invoice_notification.rb
|
|
320
|
+
- lib/recurly/webhook/updated_item_notification.rb
|
|
316
321
|
- lib/recurly/webhook/updated_shipping_address_notification.rb
|
|
317
322
|
- lib/recurly/webhook/updated_subscription_notification.rb
|
|
318
323
|
- lib/recurly/webhook/void_payment_notification.rb
|