active_remote 6.0.2 → 6.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 46c9fb95187b46b58aae5a925802ef9fc9e3927df10fd3e7dd1c7dfcbfd61346
4
- data.tar.gz: 588d8de6ebb1375e1a564f262c1e7fb7c4c9379912bee53d65f78ed8f981c981
3
+ metadata.gz: 29b348d56816a06e098fb8ef283d7d9f3033d9230bb1d066bd5dd15c8b3d100c
4
+ data.tar.gz: 47c0439724a5c2257baef12c79e4dbfb7edee3b37b9f3d57ce8690ca5468a8f6
5
5
  SHA512:
6
- metadata.gz: 2fb6dfbbe56e7346a195f2bc9c1aa7035d53ac223a6c6f79c8dfad2d6cb4b56ca6a551adde1ebd1ef1752848eb0ecfca44394bb7334c98e59e6b64336e2b9520
7
- data.tar.gz: fe2162a2f523aa54290ebd881b1979a4cf75443b1219652870b8cb2d6494b02e217d329d85d3960585f826cb34fe4e9a367b425c911c0132910aa3c7274507ca
6
+ metadata.gz: 9c43053640f5cb2034379a5ef7ab0aae58c7923af36a4cb3c12058bec99e65e43b03701bbef2648cd3f60931ac66575492feed432d8d86fe5ad1b7bc879ade04
7
+ data.tar.gz: a46eccb6bcb0fe675d48f50c280bc5385afa4d9453dc15834f452242c4ec4ce0c4e88ccfcafa1fc6bb46456b5b5c977f163bd11b4b6b2af1809a80c0db597457
@@ -39,7 +39,7 @@ module ActiveRemote
39
39
  search_hash[:guid] = object.send(foreign_key)
40
40
  search_hash[options[:scope]] = object.send(options[:scope]) if options.key?(:scope)
41
41
 
42
- search_hash.values.any?(&:nil?) ? nil : klass.search(search_hash).first
42
+ search_hash.values.any?(&:nil?) ? nil : klass.search(**search_hash).first
43
43
  end
44
44
  end
45
45
 
@@ -80,7 +80,7 @@ module ActiveRemote
80
80
  search_hash[foreign_key] = object.guid
81
81
  search_hash[options[:scope]] = object.send(options[:scope]) if options.key?(:scope)
82
82
 
83
- search_hash.values.any?(&:nil?) ? [] : klass.search(search_hash)
83
+ search_hash.values.any?(&:nil?) ? [] : klass.search(**search_hash)
84
84
  end
85
85
 
86
86
  options[:has_many] = true
@@ -120,7 +120,7 @@ module ActiveRemote
120
120
  search_hash[foreign_key] = object.guid
121
121
  search_hash[options[:scope]] = object.send(options[:scope]) if options.key?(:scope)
122
122
 
123
- search_hash.values.any?(&:nil?) ? nil : klass.search(search_hash).first
123
+ search_hash.values.any?(&:nil?) ? nil : klass.search(**search_hash).first
124
124
  end
125
125
  end
126
126
 
@@ -1,3 +1,3 @@
1
1
  module ActiveRemote
2
- VERSION = "6.0.2"
2
+ VERSION = "6.0.3"
3
3
  end
@@ -351,7 +351,7 @@ describe ::ActiveRemote::Persistence do
351
351
  end
352
352
 
353
353
  it "updates a remote record" do
354
- expect(rpc).to receive(:execute).with(:update, "name" => "foo", "guid" => "123")
354
+ expect(rpc).to receive(:execute).with(:update, {"name" => "foo", "guid" => "123"})
355
355
  tag.update_attribute(:name, "foo")
356
356
  end
357
357
 
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.0.2
4
+ version: 6.0.3
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-06-17 00:00:00.000000000 Z
11
+ date: 2024-06-15 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.3.15
283
- signing_key:
282
+ rubygems_version: 3.4.6
283
+ signing_key:
284
284
  specification_version: 4
285
285
  summary: Active Record for your platform
286
286
  test_files: