recurly 2.13.1 → 2.14.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: 191ead44d9b1d23fe7df5632d2624d36098fe51be7c390c6e9e60c23a24cc1d3
4
- data.tar.gz: 7824ca4ea7257d2d48f03815f57b630eecc177662820380dad31466aec8d3468
2
+ SHA1:
3
+ metadata.gz: e5d927750a6f80afe7369fa8acd53d89caf15197
4
+ data.tar.gz: 4dc7825dd15b4be75074eff6ccbb641b195a19ec
5
5
  SHA512:
6
- metadata.gz: d5da08fda6e75a6f54960843f72d3a3007ea6d539dc7215eaa2d0d53f5b93a7db7b199e8a65acb12a34a74573da6248fa85d3c21a55642c751b708466e7d8038
7
- data.tar.gz: f5f1046d70f65c0d41b4edbfda5519236bbec3b5cbf85ea3e8a147e059f928846effe5d3c3a7664b0c22aee608b1484e8243e6ec2edd93b3aebe2b2375414b57
6
+ metadata.gz: ed533f915f2963c3b621cf89b54023500c42f5a1d0ea68e64e230119f8e8f66b1b786a2353070d2294aebba34caee43163dbaab28ca72587ea1108c744f05bee
7
+ data.tar.gz: 1b2cdcb562a7ad3294c3eef8435e60f3cf14f3c2b19fd52ea2459609ffc00c4d8417e55f2983504d4ed559e4b51784e7e4b1c322ef3080746f9f6190941430f5
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.13.0'
17
+ gem 'recurly', '~> 2.14.0'
18
18
  ```
19
19
 
20
20
  Recurly will automatically use [Nokogiri](http://nokogiri.org/) (for a nice
data/lib/recurly.rb CHANGED
@@ -89,8 +89,6 @@ module Recurly
89
89
  end
90
90
 
91
91
  # Assigns a logger to log requests/responses and more.
92
- # The logger can only be set if the environment variable
93
- # `RECURLY_INSECURE_DEBUG` equals `true`.
94
92
  #
95
93
  # @return [Logger, nil]
96
94
  # @example
@@ -102,22 +100,6 @@ module Recurly
102
100
  # Recurly.logger = nil # Or Recurly.logger = Logger.new nil
103
101
  attr_accessor :logger
104
102
 
105
- def logger=(logger)
106
- if ENV['RECURLY_INSECURE_DEBUG'].to_s.downcase == 'true'
107
- @logger = logger
108
- puts <<-MSG
109
- [WARNING] Recurly logger enabled. The logger has the potential to leak
110
- PII and should never be used in production environments.
111
- MSG
112
- else
113
- puts <<-MSG
114
- [WARNING] Recurly logger has been disabled. If you wish to use it,
115
- only do so in a non-production environment and make sure
116
- the `RECURLY_INSECURE_DEBUG` environment variable is set to `true`.
117
- MSG
118
- end
119
- end
120
-
121
103
  # Convenience logging method includes a Logger#progname dynamically.
122
104
  # @return [true, nil]
123
105
  def log level, message
@@ -115,13 +115,16 @@ module Recurly
115
115
  end
116
116
 
117
117
  # Marks an invoice as failing collection.
118
+ # Returns a new {InvoiceCollection} and does not
119
+ # reload this invoice.
118
120
  #
119
- # @return [true, false] +true+ when successful, +false+ when unable to
121
+ # @return [InvoiceCollection, false] InvoiceCollection when successful, +false+ when unable to
120
122
  # (e.g., the invoice is no longer open).
121
123
  def mark_failed
122
124
  return false unless link? :mark_failed
123
- reload follow_link :mark_failed
124
- true
125
+ InvoiceCollection.from_response follow_link(:mark_failed)
126
+ rescue Recurly::API::UnprocessableEntity => e
127
+ raise Invalid, e.message
125
128
  end
126
129
 
127
130
  # Initiate a collection attempt on an invoice.
@@ -35,6 +35,9 @@ module Recurly
35
35
  # @return [ShippingAddress, nil]
36
36
  has_one :shipping_address, class_name: :ShippingAddress, readonly: false
37
37
 
38
+ # @return [InvoiceCollection, nil]
39
+ has_one :invoice_collection, class_name: :InvoiceCollection, readonly: true
40
+
38
41
  define_attribute_methods %w(
39
42
  uuid
40
43
  state
@@ -1,8 +1,8 @@
1
1
  module Recurly
2
2
  module Version
3
3
  MAJOR = 2
4
- MINOR = 13
5
- PATCH = 1
4
+ MINOR = 14
5
+ PATCH = 0
6
6
  PRE = nil
7
7
 
8
8
  VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.').freeze
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.13.1
4
+ version: 2.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recurly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-09 00:00:00.000000000 Z
11
+ date: 2018-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -255,7 +255,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
255
255
  version: '0'
256
256
  requirements: []
257
257
  rubyforge_project:
258
- rubygems_version: 2.7.6
258
+ rubygems_version: 2.6.13
259
259
  signing_key:
260
260
  specification_version: 4
261
261
  summary: Recurly API Client