recurly 2.18.33 → 2.18.34
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/external_subscription.rb +2 -4
- data/lib/recurly/version.rb +1 -1
- data/lib/recurly.rb +0 -1
- metadata +2 -3
- data/lib/recurly/external_resource.rb +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9760d9361ce3ff01fb7fdf89bc4138ec1b2103c8d0e76cd19f180fc708e975b7
|
4
|
+
data.tar.gz: f4cc5d1522cded81e6172b3664b226ec85d09c01b1dc378d7278d8158dfd3ccc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d106b7ed9938da57a1133ca11dbb002c7f919fddeca10e4a22d22438720b777db55296c2d2c5d041752d23053badc1a96f7300bf8c4345413557b32619e518f
|
7
|
+
data.tar.gz: 167d7fe3dc8c6d8aeabb46839110ef3c2c59c2962ee25ffaf4f1a08021c1d91dff7857428831b80f8859d224d99fb65128a4a2869cd21b03c038db298a46eb35
|
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.34'
|
18
18
|
```
|
19
19
|
|
20
20
|
Recurly will automatically use [Nokogiri](http://nokogiri.org/) (for a nice
|
@@ -4,15 +4,12 @@ module Recurly
|
|
4
4
|
# @return [Account]
|
5
5
|
belongs_to :account
|
6
6
|
|
7
|
-
# @return [ExternalResource]
|
8
|
-
has_one :external_resource
|
9
|
-
|
10
7
|
# @return [ExternalProductReference]
|
11
8
|
belongs_to :external_product_reference
|
12
9
|
|
13
10
|
define_attribute_methods %w(
|
14
11
|
account
|
15
|
-
|
12
|
+
external_id
|
16
13
|
external_product_reference
|
17
14
|
quantity
|
18
15
|
activated_at
|
@@ -22,6 +19,7 @@ module Recurly
|
|
22
19
|
last_purchased
|
23
20
|
auto_renew
|
24
21
|
app_identifier
|
22
|
+
state
|
25
23
|
)
|
26
24
|
|
27
25
|
# We do not expose PUT or POST in the v2 API.
|
data/lib/recurly/version.rb
CHANGED
data/lib/recurly.rb
CHANGED
@@ -22,7 +22,6 @@ module Recurly
|
|
22
22
|
require 'recurly/entitlement'
|
23
23
|
require 'recurly/external_product'
|
24
24
|
require 'recurly/external_product_reference'
|
25
|
-
require 'recurly/external_resource'
|
26
25
|
require 'recurly/external_subscription'
|
27
26
|
require 'recurly/helper'
|
28
27
|
require 'recurly/invoice'
|
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.34
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Recurly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
@@ -150,7 +150,6 @@ files:
|
|
150
150
|
- lib/recurly/error.rb
|
151
151
|
- lib/recurly/external_product.rb
|
152
152
|
- lib/recurly/external_product_reference.rb
|
153
|
-
- lib/recurly/external_resource.rb
|
154
153
|
- lib/recurly/external_subscription.rb
|
155
154
|
- lib/recurly/gift_card.rb
|
156
155
|
- lib/recurly/helper.rb
|