recurly 2.6.0 → 2.6.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of recurly might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5296bab34689e0ae0ec10718c784190b7997a9ff
4
- data.tar.gz: 5c1e61a8cc48280d94b4df1e7b12bae145abefd0
3
+ metadata.gz: 4c5b83e22ab78dc6ab018b997aa49e62924e16dd
4
+ data.tar.gz: f6995514fff1bcb1f57760916664d41bf7cee0b4
5
5
  SHA512:
6
- metadata.gz: f457df1f45a7483ea85ef1fc801c3fdb3843ee572ceb7c46a780a34ef9e586a691e59d3683c3e7a8142c60e4013475df9173d8969904051f5e6d5b5a0834076e
7
- data.tar.gz: 1e93e65adc5afadc1b68574b71b6f40598556413b0789a9aca55dc203dc61ee8e94b0c6bfcfd038770a6c3e660ca7854056e69150c23a1b55f618cce61c74c66
6
+ metadata.gz: 6f678aeb84ea1e296ad9a025912898c7c100f9c4618e548eea9f6a29f4fe1a66fc678b6f01d063df3484dd7c9b4e2d665ea447a40d7080509b105d552dc8d8a8
7
+ data.tar.gz: 527871a9c478f14e5aabc8356f35a339972a06bec74c251cc7ba3efe492463e11b5553bd4cfe6e628687da7b0038631f8ed4e4ee65522fffbd384dc6962b2cfc
data/README.md CHANGED
@@ -12,7 +12,7 @@ Recurly is packaged as a Ruby gem. We recommend you install it with
12
12
  [Bundler](http://gembundler.com/) by adding the following line to your Gemfile:
13
13
 
14
14
  ``` ruby
15
- gem 'recurly', '~> 2.6.0'
15
+ gem 'recurly', '~> 2.6.1'
16
16
  ```
17
17
 
18
18
  Recurly will automatically use [Nokogiri](http://nokogiri.org/) (for a nice
@@ -76,7 +76,7 @@ module Recurly
76
76
 
77
77
  def changed_attributes
78
78
  attrs = super
79
- if address && address.changed?
79
+ if address.respond_to?(:changed?) && address.changed?
80
80
  attrs['address'] = address
81
81
  end
82
82
  attrs
@@ -2,7 +2,7 @@ module Recurly
2
2
  module Version
3
3
  MAJOR = 2
4
4
  MINOR = 6
5
- PATCH = 0
5
+ PATCH = 1
6
6
  PRE = nil
7
7
 
8
8
  VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.').freeze
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: recurly
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recurly