active_remote 6.1.0 → 6.1.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/lib/active_remote/attribute_methods.rb +2 -2
- data/lib/active_remote/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bdb21298cd873749af134696da01fba644129670b4669c6a1fdbdc8654e4be88
|
|
4
|
+
data.tar.gz: dd71899f2e75cf45ef44b5173b2ce22e8663961e6623df13131986fbcf260213
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93e5714877bd7a534d1e750c77278fa4de3206d00a183dcb937513c0a60f101a68f0c0d0fed6b7ade36f86a7c389ef931b5fb1035f1b0cd1a61e1fa26929cb7d
|
|
7
|
+
data.tar.gz: 7859ca8fac202268fc2a7d4eeb1a848d9b4b7e253f2289de0984446b068eeaea519ede3e2117465d20b7776b49d80f014ca1785babaa5361f827a0cae58952ec
|
|
@@ -11,13 +11,13 @@ module ActiveRemote
|
|
|
11
11
|
def [](attr_name)
|
|
12
12
|
name = attr_name.to_s
|
|
13
13
|
name = self.class.attribute_aliases[name] || name
|
|
14
|
-
|
|
14
|
+
attribute(name.to_s)
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
def []=(attr_name, value)
|
|
18
18
|
name = attr_name.to_s
|
|
19
19
|
name = self.class.attribute_aliases[name] || name
|
|
20
|
-
|
|
20
|
+
_write_attribute(name.to_s, value)
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
# Returns an <tt>#inspect</tt>-like string for the value of the
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_remote
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.1.
|
|
4
|
+
version: 6.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Hutchison
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-09-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|
|
@@ -264,7 +264,7 @@ files:
|
|
|
264
264
|
homepage: https://github.com/liveh2o/active_remote
|
|
265
265
|
licenses: []
|
|
266
266
|
metadata: {}
|
|
267
|
-
post_install_message:
|
|
267
|
+
post_install_message:
|
|
268
268
|
rdoc_options: []
|
|
269
269
|
require_paths:
|
|
270
270
|
- lib
|
|
@@ -279,8 +279,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
279
279
|
- !ruby/object:Gem::Version
|
|
280
280
|
version: '0'
|
|
281
281
|
requirements: []
|
|
282
|
-
rubygems_version: 3.
|
|
283
|
-
signing_key:
|
|
282
|
+
rubygems_version: 3.2.28
|
|
283
|
+
signing_key:
|
|
284
284
|
specification_version: 4
|
|
285
285
|
summary: Active Record for your platform
|
|
286
286
|
test_files:
|