recurly 4.48.0 → 4.48.1
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/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +11 -0
- data/lib/recurly/resource.rb +2 -1
- data/lib/recurly/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96e4b84ed92642304d316caef8e02440f25b3aa86b53f4aa409be552ba6ea528
|
|
4
|
+
data.tar.gz: de9d27ad9767114b32a7aedd451b4f0ad3f84868e2ce9477001a3df08db5401f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57aa7328b70c2e729f0d5b6ab3f0b0d31767b99209c61452240534a728dca5744361f8f955547a6c786fa82ee23aa6da664adf14b5a24468de76002972654f4e
|
|
7
|
+
data.tar.gz: fc8b24b5cc0bcb0651d277f5c594866fd58bfcb6797c5ff09283338c3cc1fb8761871f3789e46b6108df7fa51b7a4fdb04f116605a597153f6463a9c4bc6c3e1
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.48.1](https://github.com/recurly/recurly-client-ruby/tree/4.48.1) (2024-04-02)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.48.0...4.48.1)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
**Merged Pull Requests**
|
|
9
|
+
|
|
10
|
+
- fix: Allow Resource to be compare to other object [#890](https://github.com/recurly/recurly-client-ruby/pull/890) ([malbert](https://github.com/malbert))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
3
14
|
## [4.48.0](https://github.com/recurly/recurly-client-ruby/tree/4.48.0) (2024-03-19)
|
|
4
15
|
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.47.0...4.48.0)
|
data/lib/recurly/resource.rb
CHANGED
|
@@ -15,7 +15,8 @@ module Recurly
|
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
def ==(other_resource)
|
|
18
|
-
|
|
18
|
+
other_resource.is_a?(Recurly::Resource) &&
|
|
19
|
+
attributes == other_resource.attributes
|
|
19
20
|
end
|
|
20
21
|
|
|
21
22
|
# Hide instance variables to keep from accidental logging
|
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: 4.48.
|
|
4
|
+
version: 4.48.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Recurly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-04-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -350,7 +350,7 @@ metadata:
|
|
|
350
350
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
|
351
351
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
|
352
352
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
|
353
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.48.
|
|
353
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.48.1
|
|
354
354
|
post_install_message:
|
|
355
355
|
rdoc_options: []
|
|
356
356
|
require_paths:
|