recurly 2.19.12 → 3.0.0.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +14 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +158 -110
- data/Rakefile +6 -0
- data/bin/bundle +105 -0
- data/bin/coderay +29 -0
- data/bin/console +14 -0
- data/bin/htmldiff +29 -0
- data/bin/ldiff +29 -0
- data/bin/pry +29 -0
- data/bin/rake +29 -0
- data/bin/rspec +29 -0
- data/bin/setup +8 -0
- data/bin/yard +29 -0
- data/bin/yardoc +29 -0
- data/bin/yri +29 -0
- data/lib/data/ca-certificates.crt +31 -0
- data/lib/recurly/client/operations.rb +935 -0
- data/lib/recurly/client.rb +198 -0
- data/lib/recurly/errors/api_errors.rb +35 -0
- data/lib/recurly/errors/network_errors.rb +8 -0
- data/lib/recurly/errors.rb +34 -0
- data/lib/recurly/pager.rb +119 -0
- data/lib/recurly/request.rb +30 -0
- data/lib/recurly/requests/account_acquisition_updatable.rb +22 -0
- data/lib/recurly/requests/account_create_only.rb +18 -0
- data/lib/recurly/requests/account_updatable.rb +50 -0
- data/lib/recurly/requests/add_on_create.rb +38 -0
- data/lib/recurly/requests/add_on_update.rb +38 -0
- data/lib/recurly/requests/address.rb +42 -0
- data/lib/recurly/requests/billing_info_create.rb +58 -0
- data/lib/recurly/requests/coupon_create_only.rb +66 -0
- data/lib/recurly/requests/coupon_updatable.rb +30 -0
- data/lib/recurly/requests/create_account.rb +62 -0
- data/lib/recurly/requests/create_coupon.rb +90 -0
- data/lib/recurly/requests/invoice_create.rb +42 -0
- data/lib/recurly/requests/invoice_refund.rb +30 -0
- data/lib/recurly/requests/line_item_create.rb +46 -0
- data/lib/recurly/requests/plan_create.rb +66 -0
- data/lib/recurly/requests/plan_update.rb +70 -0
- data/lib/recurly/requests/shipping_address_create.rb +58 -0
- data/lib/recurly/requests/shipping_address_update.rb +62 -0
- data/lib/recurly/requests/subscription_add_on_create.rb +22 -0
- data/lib/recurly/requests/subscription_change_create.rb +42 -0
- data/lib/recurly/requests/subscription_create.rb +86 -0
- data/lib/recurly/requests/subscription_update.rb +42 -0
- data/lib/recurly/requests/update_coupon.rb +30 -0
- data/lib/recurly/resource.rb +16 -1114
- data/lib/recurly/resources/account.rb +86 -0
- data/lib/recurly/resources/account_acquisition.rb +42 -0
- data/lib/recurly/resources/account_balance.rb +22 -0
- data/lib/recurly/resources/account_note.rb +30 -0
- data/lib/recurly/resources/add_on.rb +62 -0
- data/lib/recurly/resources/address.rb +42 -0
- data/lib/recurly/resources/billing_info.rb +62 -0
- data/lib/recurly/resources/coupon.rb +110 -0
- data/lib/recurly/resources/coupon_discount.rb +22 -0
- data/lib/recurly/resources/coupon_redemption.rb +46 -0
- data/lib/recurly/resources/credit_payment.rb +62 -0
- data/lib/recurly/resources/error.rb +18 -0
- data/lib/recurly/resources/error_may_have_transaction.rb +22 -0
- data/lib/recurly/resources/invoice.rb +138 -0
- data/lib/recurly/resources/invoice_collection.rb +18 -0
- data/lib/recurly/resources/line_item.rb +166 -0
- data/lib/recurly/resources/plan.rb +86 -0
- data/lib/recurly/resources/settings.rb +18 -0
- data/lib/recurly/resources/shipping_address.rb +74 -0
- data/lib/recurly/resources/site.rb +46 -0
- data/lib/recurly/resources/subscription.rb +134 -0
- data/lib/recurly/resources/subscription_add_on.rb +42 -0
- data/lib/recurly/resources/subscription_change.rb +54 -0
- data/lib/recurly/resources/tax_info.rb +18 -0
- data/lib/recurly/resources/transaction.rb +146 -0
- data/lib/recurly/resources/unique_coupon_code.rb +38 -0
- data/lib/recurly/resources/user.rb +38 -0
- data/lib/recurly/schema/json_deserializer.rb +53 -0
- data/lib/recurly/schema/json_parser.rb +71 -0
- data/lib/recurly/schema/request_caster.rb +66 -0
- data/lib/recurly/schema/schema_factory.rb +50 -0
- data/lib/recurly/schema/schema_validator.rb +125 -0
- data/lib/recurly/schema.rb +114 -0
- data/lib/recurly/version.rb +1 -10
- data/lib/recurly.rb +14 -167
- data/recurly.gemspec +32 -0
- data/scripts/build +4 -0
- data/scripts/clean +6 -0
- data/scripts/test +3 -0
- metadata +124 -273
- data/lib/recurly/account.rb +0 -230
- data/lib/recurly/account_acquisition.rb +0 -27
- data/lib/recurly/account_balance.rb +0 -23
- data/lib/recurly/add_on.rb +0 -52
- data/lib/recurly/address.rb +0 -25
- data/lib/recurly/adjustment.rb +0 -98
- data/lib/recurly/api/errors.rb +0 -208
- data/lib/recurly/api/net_http_adapter.rb +0 -111
- data/lib/recurly/api.rb +0 -110
- data/lib/recurly/billing_info.rb +0 -134
- data/lib/recurly/business_entity.rb +0 -33
- data/lib/recurly/coupon.rb +0 -136
- data/lib/recurly/credit_payment.rb +0 -32
- data/lib/recurly/currency_percentage_tier.rb +0 -17
- data/lib/recurly/custom_field.rb +0 -15
- data/lib/recurly/custom_field_definition.rb +0 -14
- data/lib/recurly/customer_permission.rb +0 -10
- data/lib/recurly/delivery.rb +0 -19
- data/lib/recurly/dunning_campaign.rb +0 -30
- data/lib/recurly/dunning_cycle.rb +0 -18
- data/lib/recurly/entitlement.rb +0 -19
- data/lib/recurly/error.rb +0 -13
- data/lib/recurly/external_account.rb +0 -17
- data/lib/recurly/external_charge.rb +0 -20
- data/lib/recurly/external_invoice.rb +0 -27
- data/lib/recurly/external_payment_phase.rb +0 -27
- data/lib/recurly/external_product.rb +0 -34
- data/lib/recurly/external_product_reference.rb +0 -18
- data/lib/recurly/external_subscription.rb +0 -51
- data/lib/recurly/gateway_attribute.rb +0 -10
- data/lib/recurly/general_ledger_account.rb +0 -16
- data/lib/recurly/gift_card.rb +0 -85
- data/lib/recurly/helper.rb +0 -51
- data/lib/recurly/invoice.rb +0 -322
- data/lib/recurly/invoice_collection.rb +0 -14
- data/lib/recurly/invoice_template.rb +0 -14
- data/lib/recurly/item.rb +0 -36
- data/lib/recurly/js.rb +0 -14
- data/lib/recurly/juris_detail.rb +0 -15
- data/lib/recurly/measured_unit.rb +0 -16
- data/lib/recurly/money.rb +0 -120
- data/lib/recurly/note.rb +0 -14
- data/lib/recurly/percentage_tier.rb +0 -17
- data/lib/recurly/performance_obligation.rb +0 -15
- data/lib/recurly/plan.rb +0 -58
- data/lib/recurly/plan_ramp_interval.rb +0 -10
- data/lib/recurly/purchase.rb +0 -238
- data/lib/recurly/redemption.rb +0 -46
- data/lib/recurly/resource/association.rb +0 -16
- data/lib/recurly/resource/errors.rb +0 -20
- data/lib/recurly/resource/pager.rb +0 -313
- data/lib/recurly/rev_rec.rb +0 -18
- data/lib/recurly/shipping_address.rb +0 -26
- data/lib/recurly/shipping_fee.rb +0 -17
- data/lib/recurly/shipping_method.rb +0 -13
- data/lib/recurly/sub_add_on_percentage_tier.rb +0 -17
- data/lib/recurly/subscription/add_ons.rb +0 -82
- data/lib/recurly/subscription.rb +0 -372
- data/lib/recurly/subscription_add_on.rb +0 -64
- data/lib/recurly/subscription_ramp_interval.rb +0 -12
- data/lib/recurly/tax_detail.rb +0 -18
- data/lib/recurly/tax_type.rb +0 -13
- data/lib/recurly/tier.rb +0 -18
- data/lib/recurly/transaction/errors.rb +0 -119
- data/lib/recurly/transaction.rb +0 -132
- data/lib/recurly/usage.rb +0 -29
- data/lib/recurly/verify.rb +0 -12
- data/lib/recurly/webhook/account_notification.rb +0 -13
- data/lib/recurly/webhook/billing_info_update_failed_notification.rb +0 -6
- data/lib/recurly/webhook/billing_info_updated_notification.rb +0 -6
- data/lib/recurly/webhook/canceled_account_notification.rb +0 -6
- data/lib/recurly/webhook/canceled_gift_card_notification.rb +0 -6
- data/lib/recurly/webhook/canceled_subscription_notification.rb +0 -6
- data/lib/recurly/webhook/closed_credit_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/closed_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/credit_payment_notification.rb +0 -12
- data/lib/recurly/webhook/deactivated_item_notification.rb +0 -6
- data/lib/recurly/webhook/deleted_shipping_address_notification.rb +0 -6
- data/lib/recurly/webhook/dunning_notification.rb +0 -14
- data/lib/recurly/webhook/expired_subscription_notification.rb +0 -6
- data/lib/recurly/webhook/failed_charge_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/failed_payment_notification.rb +0 -6
- data/lib/recurly/webhook/fraud_info_updated_notification.rb +0 -6
- data/lib/recurly/webhook/gift_card_notification.rb +0 -8
- data/lib/recurly/webhook/invoice_notification.rb +0 -12
- data/lib/recurly/webhook/item_notification.rb +0 -7
- data/lib/recurly/webhook/low_balance_gift_card_notification.rb +0 -6
- data/lib/recurly/webhook/new_account_notification.rb +0 -6
- data/lib/recurly/webhook/new_charge_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/new_credit_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/new_credit_payment_notification.rb +0 -6
- data/lib/recurly/webhook/new_dunning_event_notification.rb +0 -6
- data/lib/recurly/webhook/new_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/new_item_notification.rb +0 -6
- data/lib/recurly/webhook/new_shipping_address_notification.rb +0 -6
- data/lib/recurly/webhook/new_subscription_notification.rb +0 -6
- data/lib/recurly/webhook/new_usage_notification.rb +0 -8
- data/lib/recurly/webhook/notification.rb +0 -18
- data/lib/recurly/webhook/paid_charge_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/past_due_charge_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/past_due_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/paused_subscription_renewal_notification.rb +0 -6
- data/lib/recurly/webhook/prerenewal_notification.rb +0 -6
- data/lib/recurly/webhook/processing_charge_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/processing_credit_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/processing_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/processing_payment_notification.rb +0 -6
- data/lib/recurly/webhook/purchased_gift_card_notification.rb +0 -7
- data/lib/recurly/webhook/reactivated_account_notification.rb +0 -6
- data/lib/recurly/webhook/reactivated_item_notification.rb +0 -6
- data/lib/recurly/webhook/redeemed_gift_card_notification.rb +0 -7
- data/lib/recurly/webhook/regenerated_gift_card_notification.rb +0 -6
- data/lib/recurly/webhook/renewed_subscription_notification.rb +0 -6
- data/lib/recurly/webhook/reopened_charge_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/reopened_credit_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/scheduled_payment_notification.rb +0 -6
- data/lib/recurly/webhook/scheduled_subscription_pause_notification.rb +0 -6
- data/lib/recurly/webhook/scheduled_subscription_update_notification.rb +0 -6
- data/lib/recurly/webhook/subscription_notification.rb +0 -12
- data/lib/recurly/webhook/subscription_pause_canceled_notification.rb +0 -6
- data/lib/recurly/webhook/subscription_pause_modified_notification.rb +0 -6
- data/lib/recurly/webhook/subscription_paused_notification.rb +0 -6
- data/lib/recurly/webhook/subscription_resumed_notification.rb +0 -6
- data/lib/recurly/webhook/successful_payment_notification.rb +0 -6
- data/lib/recurly/webhook/successful_refund_notification.rb +0 -6
- data/lib/recurly/webhook/transaction_authorized_notification.rb +0 -6
- data/lib/recurly/webhook/transaction_notification.rb +0 -12
- data/lib/recurly/webhook/transaction_status_updated_notification.rb +0 -6
- data/lib/recurly/webhook/updated_account_notification.rb +0 -6
- data/lib/recurly/webhook/updated_balance_gift_card_notification.rb +0 -7
- data/lib/recurly/webhook/updated_gift_card_notification.rb +0 -6
- data/lib/recurly/webhook/updated_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/updated_item_notification.rb +0 -6
- data/lib/recurly/webhook/updated_shipping_address_notification.rb +0 -6
- data/lib/recurly/webhook/updated_subscription_notification.rb +0 -6
- data/lib/recurly/webhook/void_payment_notification.rb +0 -6
- data/lib/recurly/webhook/voided_credit_invoice_notification.rb +0 -6
- data/lib/recurly/webhook/voided_credit_payment_notification.rb +0 -6
- data/lib/recurly/webhook.rb +0 -113
- data/lib/recurly/xml/nokogiri.rb +0 -60
- data/lib/recurly/xml/rexml.rb +0 -52
- data/lib/recurly/xml.rb +0 -122
metadata
CHANGED
@@ -1,381 +1,232 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recurly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0.beta.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Recurly
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: faraday
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
20
|
-
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 1.8.2
|
23
|
-
type: :development
|
19
|
+
version: '0.13'
|
20
|
+
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
24
|
- - "~>"
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version: '
|
30
|
-
- - ">="
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 1.8.2
|
26
|
+
version: '0.13'
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
|
-
name:
|
28
|
+
name: bundler
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
36
30
|
requirements:
|
37
31
|
- - "~>"
|
38
32
|
- !ruby/object:Gem::Version
|
39
|
-
version: '
|
33
|
+
version: '1.14'
|
40
34
|
type: :development
|
41
35
|
prerelease: false
|
42
36
|
version_requirements: !ruby/object:Gem::Requirement
|
43
37
|
requirements:
|
44
38
|
- - "~>"
|
45
39
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: minitest
|
49
|
-
requirement: !ruby/object:Gem::Requirement
|
50
|
-
requirements:
|
51
|
-
- - "~>"
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: '5.8'
|
54
|
-
- - ">="
|
55
|
-
- !ruby/object:Gem::Version
|
56
|
-
version: 5.8.0
|
57
|
-
type: :development
|
58
|
-
prerelease: false
|
59
|
-
version_requirements: !ruby/object:Gem::Requirement
|
60
|
-
requirements:
|
61
|
-
- - "~>"
|
62
|
-
- !ruby/object:Gem::Version
|
63
|
-
version: '5.8'
|
64
|
-
- - ">="
|
65
|
-
- !ruby/object:Gem::Version
|
66
|
-
version: 5.8.0
|
40
|
+
version: '1.14'
|
67
41
|
- !ruby/object:Gem::Dependency
|
68
|
-
name:
|
69
|
-
requirement: !ruby/object:Gem::Requirement
|
70
|
-
requirements:
|
71
|
-
- - "~>"
|
72
|
-
- !ruby/object:Gem::Version
|
73
|
-
version: '2.4'
|
74
|
-
- - ">="
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
version: 2.4.0
|
77
|
-
type: :development
|
78
|
-
prerelease: false
|
79
|
-
version_requirements: !ruby/object:Gem::Requirement
|
80
|
-
requirements:
|
81
|
-
- - "~>"
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
version: '2.4'
|
84
|
-
- - ">="
|
85
|
-
- !ruby/object:Gem::Version
|
86
|
-
version: 2.4.0
|
87
|
-
- !ruby/object:Gem::Dependency
|
88
|
-
name: webmock
|
42
|
+
name: rake
|
89
43
|
requirement: !ruby/object:Gem::Requirement
|
90
44
|
requirements:
|
91
45
|
- - "~>"
|
92
46
|
- !ruby/object:Gem::Version
|
93
|
-
version: '
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: 2.3.2
|
47
|
+
version: '10.0'
|
97
48
|
type: :development
|
98
49
|
prerelease: false
|
99
50
|
version_requirements: !ruby/object:Gem::Requirement
|
100
51
|
requirements:
|
101
52
|
- - "~>"
|
102
53
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
104
|
-
- - ">="
|
105
|
-
- !ruby/object:Gem::Version
|
106
|
-
version: 2.3.2
|
54
|
+
version: '10.0'
|
107
55
|
- !ruby/object:Gem::Dependency
|
108
|
-
name:
|
56
|
+
name: rspec
|
109
57
|
requirement: !ruby/object:Gem::Requirement
|
110
58
|
requirements:
|
111
59
|
- - "~>"
|
112
60
|
- !ruby/object:Gem::Version
|
113
|
-
version: '0'
|
61
|
+
version: '3.0'
|
114
62
|
type: :development
|
115
63
|
prerelease: false
|
116
64
|
version_requirements: !ruby/object:Gem::Requirement
|
117
65
|
requirements:
|
118
66
|
- - "~>"
|
119
67
|
- !ruby/object:Gem::Version
|
120
|
-
version: '0'
|
68
|
+
version: '3.0'
|
121
69
|
- !ruby/object:Gem::Dependency
|
122
70
|
name: yard
|
123
71
|
requirement: !ruby/object:Gem::Requirement
|
124
72
|
requirements:
|
125
73
|
- - "~>"
|
126
74
|
- !ruby/object:Gem::Version
|
127
|
-
version: 0.9
|
75
|
+
version: '0.9'
|
128
76
|
type: :development
|
129
77
|
prerelease: false
|
130
78
|
version_requirements: !ruby/object:Gem::Requirement
|
131
79
|
requirements:
|
132
80
|
- - "~>"
|
133
81
|
- !ruby/object:Gem::Version
|
134
|
-
version: 0.9
|
82
|
+
version: '0.9'
|
135
83
|
- !ruby/object:Gem::Dependency
|
136
|
-
name:
|
137
|
-
requirement: !ruby/object:Gem::Requirement
|
138
|
-
requirements:
|
139
|
-
- - "~>"
|
140
|
-
- !ruby/object:Gem::Version
|
141
|
-
version: '3.4'
|
142
|
-
- - ">="
|
143
|
-
- !ruby/object:Gem::Version
|
144
|
-
version: 3.4.0
|
145
|
-
type: :development
|
146
|
-
prerelease: false
|
147
|
-
version_requirements: !ruby/object:Gem::Requirement
|
148
|
-
requirements:
|
149
|
-
- - "~>"
|
150
|
-
- !ruby/object:Gem::Version
|
151
|
-
version: '3.4'
|
152
|
-
- - ">="
|
153
|
-
- !ruby/object:Gem::Version
|
154
|
-
version: 3.4.0
|
155
|
-
- !ruby/object:Gem::Dependency
|
156
|
-
name: racc
|
84
|
+
name: pry
|
157
85
|
requirement: !ruby/object:Gem::Requirement
|
158
86
|
requirements:
|
159
87
|
- - "~>"
|
160
88
|
- !ruby/object:Gem::Version
|
161
|
-
version: '
|
89
|
+
version: '0.10'
|
162
90
|
type: :development
|
163
91
|
prerelease: false
|
164
92
|
version_requirements: !ruby/object:Gem::Requirement
|
165
93
|
requirements:
|
166
94
|
- - "~>"
|
167
95
|
- !ruby/object:Gem::Version
|
168
|
-
version: '
|
96
|
+
version: '0.10'
|
169
97
|
- !ruby/object:Gem::Dependency
|
170
|
-
name:
|
171
|
-
requirement: !ruby/object:Gem::Requirement
|
172
|
-
requirements:
|
173
|
-
- - "<"
|
174
|
-
- !ruby/object:Gem::Version
|
175
|
-
version: 0.11.0
|
176
|
-
- - ">="
|
177
|
-
- !ruby/object:Gem::Version
|
178
|
-
version: 0.9.10
|
179
|
-
type: :development
|
180
|
-
prerelease: false
|
181
|
-
version_requirements: !ruby/object:Gem::Requirement
|
182
|
-
requirements:
|
183
|
-
- - "<"
|
184
|
-
- !ruby/object:Gem::Version
|
185
|
-
version: 0.11.0
|
186
|
-
- - ">="
|
187
|
-
- !ruby/object:Gem::Version
|
188
|
-
version: 0.9.10
|
189
|
-
- !ruby/object:Gem::Dependency
|
190
|
-
name: pry-nav
|
98
|
+
name: simplecov
|
191
99
|
requirement: !ruby/object:Gem::Requirement
|
192
100
|
requirements:
|
193
101
|
- - "~>"
|
194
102
|
- !ruby/object:Gem::Version
|
195
|
-
version: 0.
|
103
|
+
version: '0.16'
|
196
104
|
type: :development
|
197
105
|
prerelease: false
|
198
106
|
version_requirements: !ruby/object:Gem::Requirement
|
199
107
|
requirements:
|
200
108
|
- - "~>"
|
201
109
|
- !ruby/object:Gem::Version
|
202
|
-
version: 0.
|
203
|
-
description:
|
204
|
-
email:
|
110
|
+
version: '0.16'
|
111
|
+
description: The ruby client for Recurly's Partner API
|
112
|
+
email:
|
113
|
+
- support@recurly.com
|
205
114
|
executables: []
|
206
115
|
extensions: []
|
207
|
-
extra_rdoc_files:
|
208
|
-
- README.md
|
116
|
+
extra_rdoc_files: []
|
209
117
|
files:
|
118
|
+
- ".gitignore"
|
119
|
+
- ".rspec"
|
120
|
+
- ".travis.yml"
|
121
|
+
- Gemfile
|
122
|
+
- LICENSE.txt
|
210
123
|
- README.md
|
124
|
+
- Rakefile
|
125
|
+
- bin/bundle
|
126
|
+
- bin/coderay
|
127
|
+
- bin/console
|
128
|
+
- bin/htmldiff
|
129
|
+
- bin/ldiff
|
130
|
+
- bin/pry
|
131
|
+
- bin/rake
|
132
|
+
- bin/rspec
|
133
|
+
- bin/setup
|
134
|
+
- bin/yard
|
135
|
+
- bin/yardoc
|
136
|
+
- bin/yri
|
137
|
+
- lib/data/ca-certificates.crt
|
211
138
|
- lib/recurly.rb
|
212
|
-
- lib/recurly/
|
213
|
-
- lib/recurly/
|
214
|
-
- lib/recurly/
|
215
|
-
- lib/recurly/
|
216
|
-
- lib/recurly/
|
217
|
-
- lib/recurly/
|
218
|
-
- lib/recurly/
|
219
|
-
- lib/recurly/
|
220
|
-
- lib/recurly/
|
221
|
-
- lib/recurly/
|
222
|
-
- lib/recurly/
|
223
|
-
- lib/recurly/
|
224
|
-
- lib/recurly/
|
225
|
-
- lib/recurly/
|
226
|
-
- lib/recurly/
|
227
|
-
- lib/recurly/
|
228
|
-
- lib/recurly/
|
229
|
-
- lib/recurly/
|
230
|
-
- lib/recurly/
|
231
|
-
- lib/recurly/
|
232
|
-
- lib/recurly/
|
233
|
-
- lib/recurly/
|
234
|
-
- lib/recurly/
|
235
|
-
- lib/recurly/
|
236
|
-
- lib/recurly/
|
237
|
-
- lib/recurly/
|
238
|
-
- lib/recurly/
|
239
|
-
- lib/recurly/
|
240
|
-
- lib/recurly/
|
241
|
-
- lib/recurly/
|
242
|
-
- lib/recurly/general_ledger_account.rb
|
243
|
-
- lib/recurly/gift_card.rb
|
244
|
-
- lib/recurly/helper.rb
|
245
|
-
- lib/recurly/invoice.rb
|
246
|
-
- lib/recurly/invoice_collection.rb
|
247
|
-
- lib/recurly/invoice_template.rb
|
248
|
-
- lib/recurly/item.rb
|
249
|
-
- lib/recurly/js.rb
|
250
|
-
- lib/recurly/juris_detail.rb
|
251
|
-
- lib/recurly/measured_unit.rb
|
252
|
-
- lib/recurly/money.rb
|
253
|
-
- lib/recurly/note.rb
|
254
|
-
- lib/recurly/percentage_tier.rb
|
255
|
-
- lib/recurly/performance_obligation.rb
|
256
|
-
- lib/recurly/plan.rb
|
257
|
-
- lib/recurly/plan_ramp_interval.rb
|
258
|
-
- lib/recurly/purchase.rb
|
259
|
-
- lib/recurly/redemption.rb
|
139
|
+
- lib/recurly/client.rb
|
140
|
+
- lib/recurly/client/operations.rb
|
141
|
+
- lib/recurly/errors.rb
|
142
|
+
- lib/recurly/errors/api_errors.rb
|
143
|
+
- lib/recurly/errors/network_errors.rb
|
144
|
+
- lib/recurly/pager.rb
|
145
|
+
- lib/recurly/request.rb
|
146
|
+
- lib/recurly/requests/account_acquisition_updatable.rb
|
147
|
+
- lib/recurly/requests/account_create_only.rb
|
148
|
+
- lib/recurly/requests/account_updatable.rb
|
149
|
+
- lib/recurly/requests/add_on_create.rb
|
150
|
+
- lib/recurly/requests/add_on_update.rb
|
151
|
+
- lib/recurly/requests/address.rb
|
152
|
+
- lib/recurly/requests/billing_info_create.rb
|
153
|
+
- lib/recurly/requests/coupon_create_only.rb
|
154
|
+
- lib/recurly/requests/coupon_updatable.rb
|
155
|
+
- lib/recurly/requests/create_account.rb
|
156
|
+
- lib/recurly/requests/create_coupon.rb
|
157
|
+
- lib/recurly/requests/invoice_create.rb
|
158
|
+
- lib/recurly/requests/invoice_refund.rb
|
159
|
+
- lib/recurly/requests/line_item_create.rb
|
160
|
+
- lib/recurly/requests/plan_create.rb
|
161
|
+
- lib/recurly/requests/plan_update.rb
|
162
|
+
- lib/recurly/requests/shipping_address_create.rb
|
163
|
+
- lib/recurly/requests/shipping_address_update.rb
|
164
|
+
- lib/recurly/requests/subscription_add_on_create.rb
|
165
|
+
- lib/recurly/requests/subscription_change_create.rb
|
166
|
+
- lib/recurly/requests/subscription_create.rb
|
167
|
+
- lib/recurly/requests/subscription_update.rb
|
168
|
+
- lib/recurly/requests/update_coupon.rb
|
260
169
|
- lib/recurly/resource.rb
|
261
|
-
- lib/recurly/
|
262
|
-
- lib/recurly/
|
263
|
-
- lib/recurly/
|
264
|
-
- lib/recurly/
|
265
|
-
- lib/recurly/
|
266
|
-
- lib/recurly/
|
267
|
-
- lib/recurly/
|
268
|
-
- lib/recurly/
|
269
|
-
- lib/recurly/
|
270
|
-
- lib/recurly/
|
271
|
-
- lib/recurly/
|
272
|
-
- lib/recurly/
|
273
|
-
- lib/recurly/
|
274
|
-
- lib/recurly/
|
275
|
-
- lib/recurly/
|
276
|
-
- lib/recurly/
|
277
|
-
- lib/recurly/
|
278
|
-
- lib/recurly/
|
279
|
-
- lib/recurly/
|
170
|
+
- lib/recurly/resources/account.rb
|
171
|
+
- lib/recurly/resources/account_acquisition.rb
|
172
|
+
- lib/recurly/resources/account_balance.rb
|
173
|
+
- lib/recurly/resources/account_note.rb
|
174
|
+
- lib/recurly/resources/add_on.rb
|
175
|
+
- lib/recurly/resources/address.rb
|
176
|
+
- lib/recurly/resources/billing_info.rb
|
177
|
+
- lib/recurly/resources/coupon.rb
|
178
|
+
- lib/recurly/resources/coupon_discount.rb
|
179
|
+
- lib/recurly/resources/coupon_redemption.rb
|
180
|
+
- lib/recurly/resources/credit_payment.rb
|
181
|
+
- lib/recurly/resources/error.rb
|
182
|
+
- lib/recurly/resources/error_may_have_transaction.rb
|
183
|
+
- lib/recurly/resources/invoice.rb
|
184
|
+
- lib/recurly/resources/invoice_collection.rb
|
185
|
+
- lib/recurly/resources/line_item.rb
|
186
|
+
- lib/recurly/resources/plan.rb
|
187
|
+
- lib/recurly/resources/settings.rb
|
188
|
+
- lib/recurly/resources/shipping_address.rb
|
189
|
+
- lib/recurly/resources/site.rb
|
190
|
+
- lib/recurly/resources/subscription.rb
|
191
|
+
- lib/recurly/resources/subscription_add_on.rb
|
192
|
+
- lib/recurly/resources/subscription_change.rb
|
193
|
+
- lib/recurly/resources/tax_info.rb
|
194
|
+
- lib/recurly/resources/transaction.rb
|
195
|
+
- lib/recurly/resources/unique_coupon_code.rb
|
196
|
+
- lib/recurly/resources/user.rb
|
197
|
+
- lib/recurly/schema.rb
|
198
|
+
- lib/recurly/schema/json_deserializer.rb
|
199
|
+
- lib/recurly/schema/json_parser.rb
|
200
|
+
- lib/recurly/schema/request_caster.rb
|
201
|
+
- lib/recurly/schema/schema_factory.rb
|
202
|
+
- lib/recurly/schema/schema_validator.rb
|
280
203
|
- lib/recurly/version.rb
|
281
|
-
-
|
282
|
-
-
|
283
|
-
-
|
284
|
-
-
|
285
|
-
-
|
286
|
-
- lib/recurly/webhook/canceled_gift_card_notification.rb
|
287
|
-
- lib/recurly/webhook/canceled_subscription_notification.rb
|
288
|
-
- lib/recurly/webhook/closed_credit_invoice_notification.rb
|
289
|
-
- lib/recurly/webhook/closed_invoice_notification.rb
|
290
|
-
- lib/recurly/webhook/credit_payment_notification.rb
|
291
|
-
- lib/recurly/webhook/deactivated_item_notification.rb
|
292
|
-
- lib/recurly/webhook/deleted_shipping_address_notification.rb
|
293
|
-
- lib/recurly/webhook/dunning_notification.rb
|
294
|
-
- lib/recurly/webhook/expired_subscription_notification.rb
|
295
|
-
- lib/recurly/webhook/failed_charge_invoice_notification.rb
|
296
|
-
- lib/recurly/webhook/failed_payment_notification.rb
|
297
|
-
- lib/recurly/webhook/fraud_info_updated_notification.rb
|
298
|
-
- lib/recurly/webhook/gift_card_notification.rb
|
299
|
-
- lib/recurly/webhook/invoice_notification.rb
|
300
|
-
- lib/recurly/webhook/item_notification.rb
|
301
|
-
- lib/recurly/webhook/low_balance_gift_card_notification.rb
|
302
|
-
- lib/recurly/webhook/new_account_notification.rb
|
303
|
-
- lib/recurly/webhook/new_charge_invoice_notification.rb
|
304
|
-
- lib/recurly/webhook/new_credit_invoice_notification.rb
|
305
|
-
- lib/recurly/webhook/new_credit_payment_notification.rb
|
306
|
-
- lib/recurly/webhook/new_dunning_event_notification.rb
|
307
|
-
- lib/recurly/webhook/new_invoice_notification.rb
|
308
|
-
- lib/recurly/webhook/new_item_notification.rb
|
309
|
-
- lib/recurly/webhook/new_shipping_address_notification.rb
|
310
|
-
- lib/recurly/webhook/new_subscription_notification.rb
|
311
|
-
- lib/recurly/webhook/new_usage_notification.rb
|
312
|
-
- lib/recurly/webhook/notification.rb
|
313
|
-
- lib/recurly/webhook/paid_charge_invoice_notification.rb
|
314
|
-
- lib/recurly/webhook/past_due_charge_invoice_notification.rb
|
315
|
-
- lib/recurly/webhook/past_due_invoice_notification.rb
|
316
|
-
- lib/recurly/webhook/paused_subscription_renewal_notification.rb
|
317
|
-
- lib/recurly/webhook/prerenewal_notification.rb
|
318
|
-
- lib/recurly/webhook/processing_charge_invoice_notification.rb
|
319
|
-
- lib/recurly/webhook/processing_credit_invoice_notification.rb
|
320
|
-
- lib/recurly/webhook/processing_invoice_notification.rb
|
321
|
-
- lib/recurly/webhook/processing_payment_notification.rb
|
322
|
-
- lib/recurly/webhook/purchased_gift_card_notification.rb
|
323
|
-
- lib/recurly/webhook/reactivated_account_notification.rb
|
324
|
-
- lib/recurly/webhook/reactivated_item_notification.rb
|
325
|
-
- lib/recurly/webhook/redeemed_gift_card_notification.rb
|
326
|
-
- lib/recurly/webhook/regenerated_gift_card_notification.rb
|
327
|
-
- lib/recurly/webhook/renewed_subscription_notification.rb
|
328
|
-
- lib/recurly/webhook/reopened_charge_invoice_notification.rb
|
329
|
-
- lib/recurly/webhook/reopened_credit_invoice_notification.rb
|
330
|
-
- lib/recurly/webhook/scheduled_payment_notification.rb
|
331
|
-
- lib/recurly/webhook/scheduled_subscription_pause_notification.rb
|
332
|
-
- lib/recurly/webhook/scheduled_subscription_update_notification.rb
|
333
|
-
- lib/recurly/webhook/subscription_notification.rb
|
334
|
-
- lib/recurly/webhook/subscription_pause_canceled_notification.rb
|
335
|
-
- lib/recurly/webhook/subscription_pause_modified_notification.rb
|
336
|
-
- lib/recurly/webhook/subscription_paused_notification.rb
|
337
|
-
- lib/recurly/webhook/subscription_resumed_notification.rb
|
338
|
-
- lib/recurly/webhook/successful_payment_notification.rb
|
339
|
-
- lib/recurly/webhook/successful_refund_notification.rb
|
340
|
-
- lib/recurly/webhook/transaction_authorized_notification.rb
|
341
|
-
- lib/recurly/webhook/transaction_notification.rb
|
342
|
-
- lib/recurly/webhook/transaction_status_updated_notification.rb
|
343
|
-
- lib/recurly/webhook/updated_account_notification.rb
|
344
|
-
- lib/recurly/webhook/updated_balance_gift_card_notification.rb
|
345
|
-
- lib/recurly/webhook/updated_gift_card_notification.rb
|
346
|
-
- lib/recurly/webhook/updated_invoice_notification.rb
|
347
|
-
- lib/recurly/webhook/updated_item_notification.rb
|
348
|
-
- lib/recurly/webhook/updated_shipping_address_notification.rb
|
349
|
-
- lib/recurly/webhook/updated_subscription_notification.rb
|
350
|
-
- lib/recurly/webhook/void_payment_notification.rb
|
351
|
-
- lib/recurly/webhook/voided_credit_invoice_notification.rb
|
352
|
-
- lib/recurly/webhook/voided_credit_payment_notification.rb
|
353
|
-
- lib/recurly/xml.rb
|
354
|
-
- lib/recurly/xml/nokogiri.rb
|
355
|
-
- lib/recurly/xml/rexml.rb
|
356
|
-
homepage: https://github.com/recurly/recurly-client-ruby
|
204
|
+
- recurly.gemspec
|
205
|
+
- scripts/build
|
206
|
+
- scripts/clean
|
207
|
+
- scripts/test
|
208
|
+
homepage: https://partner-docs.recurly.com
|
357
209
|
licenses:
|
358
210
|
- MIT
|
359
211
|
metadata: {}
|
360
|
-
post_install_message:
|
361
|
-
rdoc_options:
|
362
|
-
- "--main"
|
363
|
-
- README.md
|
212
|
+
post_install_message:
|
213
|
+
rdoc_options: []
|
364
214
|
require_paths:
|
365
215
|
- lib
|
366
216
|
required_ruby_version: !ruby/object:Gem::Requirement
|
367
217
|
requirements:
|
368
218
|
- - ">="
|
369
219
|
- !ruby/object:Gem::Version
|
370
|
-
version:
|
220
|
+
version: '0'
|
371
221
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
372
222
|
requirements:
|
373
|
-
- - "
|
223
|
+
- - ">"
|
374
224
|
- !ruby/object:Gem::Version
|
375
|
-
version:
|
225
|
+
version: 1.3.1
|
376
226
|
requirements: []
|
377
|
-
|
378
|
-
|
227
|
+
rubyforge_project:
|
228
|
+
rubygems_version: 2.7.6
|
229
|
+
signing_key:
|
379
230
|
specification_version: 4
|
380
|
-
summary: Recurly API
|
231
|
+
summary: The ruby client for Recurly's Partner API
|
381
232
|
test_files: []
|