recurly 2.7.4 → 2.7.5
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 +2 -2
- data/lib/recurly/coupon.rb +1 -1
- data/lib/recurly/resource.rb +2 -2
- data/lib/recurly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61ab2928685e7120a69eac92fa51c4e06578e41f
|
|
4
|
+
data.tar.gz: cc4dcd149a5e5054ee39b2711cb8260051eb053b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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–
|
|
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
|
data/lib/recurly/coupon.rb
CHANGED
|
@@ -73,7 +73,7 @@ module Recurly
|
|
|
73
73
|
:currency => currency || Recurly.default_currency
|
|
74
74
|
}.merge(extra_opts)
|
|
75
75
|
|
|
76
|
-
redemption =
|
|
76
|
+
redemption = Redemption.new(redemption_options)
|
|
77
77
|
|
|
78
78
|
Redemption.from_response follow_link(:redeem,
|
|
79
79
|
:body => redemption.to_xml
|
data/lib/recurly/resource.rb
CHANGED
|
@@ -579,8 +579,8 @@ module Recurly
|
|
|
579
579
|
end
|
|
580
580
|
|
|
581
581
|
def embedded!(root_index = false)
|
|
582
|
-
|
|
583
|
-
private_class_method(*%w(
|
|
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
|
data/lib/recurly/version.rb
CHANGED
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
|
+
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
|
+
date: 2016-12-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|