recurly 2.7.4 → 2.7.5

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: e8cdc190978fed596fdf9c6a17d30eb2b63ba8e5
4
- data.tar.gz: 575cb6981a32e629ab3f3ef35289a23a2d3bcd15
3
+ metadata.gz: 61ab2928685e7120a69eac92fa51c4e06578e41f
4
+ data.tar.gz: cc4dcd149a5e5054ee39b2711cb8260051eb053b
5
5
  SHA512:
6
- metadata.gz: 2472d0013209e92ead7acb9d45b0a9778def95669be78b51a97f6da8f45f045abb16d18cfd00651a138d8e5cb4a2b3e8309a019225260162c767706c60a86830
7
- data.tar.gz: 36b4556facfc67c1c7906db07d8fc8c5a66a0f92b52a97043016f5fcdeb537a87f4c511e717ca155044924efe00b52e9a11a147b83f9c57862bb401354db3601
6
+ metadata.gz: cb4828c10b305d8ae5875a60ff620eea737587be9d8956432baa083547fca804551671e19f2f92a7728954abc6749598cfb4da6669d4a24c51c6b47e334cd578
7
+ data.tar.gz: 318dd23bf5a4e539f728f07d8d30c298cd841708a1205a969b52a92cd9fe88f8714c0bedb55dc9450a02e5e40447943f16be978c80f19889a74f30ad81b4e5a6
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.7.4'
15
+ gem 'recurly', '~> 2.7.5'
16
16
  ```
17
17
 
18
18
  Recurly will automatically use [Nokogiri](http://nokogiri.org/) (for a nice
@@ -147,7 +147,7 @@ If everything looks good, submit a pull request on GitHub and we'll bring in you
147
147
 
148
148
  (The MIT License.)
149
149
 
150
- © 2009–2015 Recurly Inc.
150
+ © 2009–2016 Recurly Inc.
151
151
 
152
152
  Permission is hereby granted, free of charge, to any person obtaining a copy
153
153
  of this software and associated documentation files (the "Software"), to deal
@@ -73,7 +73,7 @@ module Recurly
73
73
  :currency => currency || Recurly.default_currency
74
74
  }.merge(extra_opts)
75
75
 
76
- redemption = redemptions.new(redemption_options)
76
+ redemption = Redemption.new(redemption_options)
77
77
 
78
78
  Redemption.from_response follow_link(:redeem,
79
79
  :body => redemption.to_xml
@@ -579,8 +579,8 @@ module Recurly
579
579
  end
580
580
 
581
581
  def embedded!(root_index = false)
582
- private :initialize
583
- private_class_method(*%w(new create create!))
582
+ protected :initialize
583
+ private_class_method(*%w(create create!))
584
584
  unless root_index
585
585
  private_class_method(*%w(all find_each first paginate scoped where))
586
586
  end
@@ -2,7 +2,7 @@ module Recurly
2
2
  module Version
3
3
  MAJOR = 2
4
4
  MINOR = 7
5
- PATCH = 4
5
+ PATCH = 5
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.7.4
4
+ version: 2.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recurly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-17 00:00:00.000000000 Z
11
+ date: 2016-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri