switchman 1.12.7 → 1.12.8
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/app/models/switchman/shard_internal.rb +1 -1
- data/lib/switchman/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cab1746de9ff730b8a44815613ee7fea67ddc66369e4e1f97b6bfedabcf75cbe
|
4
|
+
data.tar.gz: 2d1eb3020a5d79ea030456fd83daa2758f6b39a68a59fa997fd2af378d02397c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d54671a6ca8188bc6f878de438c1b565e697c7e2bab14e11d11e319babad497f0fede72ae2a6cbcc0973bbba4180768ede62c4fc0bdae32d3d21eb4ea15d6985
|
7
|
+
data.tar.gz: 5f81e116eb014f9302f2996e496902883aecf5f8855b1cd50b63cebec8109feb4f9c1e5d108745b150589595340f4331ddafc6053fc5d74095227c410d0e8d0f
|
@@ -525,7 +525,7 @@ module Switchman
|
|
525
525
|
|
526
526
|
shard = Shard.new
|
527
527
|
attributes.each do |attr, value|
|
528
|
-
shard.send(:"#{attr}=", value)
|
528
|
+
shard.send(:"#{attr}=", value) if shard.respond_to?(:"#{attr}=")
|
529
529
|
end
|
530
530
|
shard.clear_changes_information
|
531
531
|
shard.instance_variable_set(:@new_record, false)
|
data/lib/switchman/version.rb
CHANGED