recurly 3.6.0 → 3.7.0
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/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +19 -2
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/client.rb +7 -5
- data/lib/recurly/client/operations.rb +38 -1
- data/lib/recurly/requests/add_on_create.rb +2 -2
- data/lib/recurly/requests/add_on_update.rb +1 -1
- data/lib/recurly/requests/billing_info_create.rb +10 -2
- data/lib/recurly/requests/plan_create.rb +8 -0
- data/lib/recurly/requests/plan_update.rb +8 -0
- data/lib/recurly/requests/shipping_method_create.rb +26 -0
- data/lib/recurly/requests/shipping_method_update.rb +26 -0
- data/lib/recurly/requests/subscription_add_on_create.rb +1 -1
- data/lib/recurly/requests/subscription_add_on_update.rb +1 -1
- data/lib/recurly/resources/plan.rb +8 -0
- data/lib/recurly/resources/transaction.rb +4 -0
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +772 -19
- data/recurly.gemspec +1 -1
- metadata +6 -4
data/recurly.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
17
17
|
spec.metadata = {
|
18
18
|
"bug_tracker_uri" => "#{spec.homepage}/issues",
|
19
19
|
"changelog_uri" => "#{spec.homepage}/blob/master/CHANGELOG.md",
|
20
|
-
"documentation_uri" => "https://
|
20
|
+
"documentation_uri" => "https://recurly.github.io/recurly-client-ruby/",
|
21
21
|
"homepage_uri" => spec.homepage,
|
22
22
|
"source_code_uri" => "#{spec.homepage}/tree/#{spec.version}",
|
23
23
|
}
|
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: 3.
|
4
|
+
version: 3.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Recurly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -180,6 +180,8 @@ files:
|
|
180
180
|
- lib/recurly/requests/shipping_address_create.rb
|
181
181
|
- lib/recurly/requests/shipping_address_update.rb
|
182
182
|
- lib/recurly/requests/shipping_fee_create.rb
|
183
|
+
- lib/recurly/requests/shipping_method_create.rb
|
184
|
+
- lib/recurly/requests/shipping_method_update.rb
|
183
185
|
- lib/recurly/requests/shipping_purchase.rb
|
184
186
|
- lib/recurly/requests/subscription_add_on_create.rb
|
185
187
|
- lib/recurly/requests/subscription_add_on_tier.rb
|
@@ -279,9 +281,9 @@ licenses:
|
|
279
281
|
metadata:
|
280
282
|
bug_tracker_uri: https://github.com/recurly/recurly-client-ruby/issues
|
281
283
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
282
|
-
documentation_uri: https://
|
284
|
+
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
283
285
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
284
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/3.
|
286
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/3.7.0
|
285
287
|
post_install_message:
|
286
288
|
rdoc_options: []
|
287
289
|
require_paths:
|