g5_updatable 0.10.1 → 0.10.2

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
  SHA1:
3
- metadata.gz: e935c81caefe25b1a94e71205ca4f828eb47e0d1
4
- data.tar.gz: 2c697bf918aae3eba2be18879f134269405b2a4e
3
+ metadata.gz: 41dc59b9714737928143836c46ccb844e7edd89e
4
+ data.tar.gz: 4f01ea5eae3625b7b53ee79d8f6233901f8ab55b
5
5
  SHA512:
6
- metadata.gz: c417f846af254604907a5fb3854937d6fa17c8160ff5da3eb9664ec1768b8115db1762e911c37b1f21500e92b48d89bab1f36672db3e014550321f0554e700bb
7
- data.tar.gz: 94b9fc02b13e5d43ea1f0712e908700a088e3ae52c28e4f7150b4c4dd38a1eb46e3a7fca152be33c0f1b3de4005b615380bdcbdc062c1fafcd4e3d97db0ea32a
6
+ metadata.gz: cc5153bb4e17e355defc6ee1f8b8f4da655973b6a10e59eebb1030b8b71846e2727870120c5a4f47adf249e969adc93eec7b8badf4ee722b9d89eb021f7af9a4
7
+ data.tar.gz: d33293bbf3c99f348897b573a1e2cea456245325e28c2fff2bbcbba270dec78d63283a8d3b7409256f12e91d8bd4a1c1ae02f945f0fbc40cfae1b4fdda9bb6fb
@@ -9,6 +9,11 @@ class G5Updatable::ClientUpdater
9
9
 
10
10
  G5Updatable::Client.
11
11
  find_or_initialize_by(uid: attributes[:uid]).
12
- update_attributes!(urn: attributes[:urn], name: attributes[:name], properties: attributes)
12
+ update_attributes!(
13
+ urn: attributes[:urn],
14
+ name: attributes[:name],
15
+ properties: attributes,
16
+ updated_at: DateTime.now
17
+ )
13
18
  end
14
19
  end
@@ -1,3 +1,3 @@
1
1
  module G5Updatable
2
- VERSION = "0.10.1"
2
+ VERSION = "0.10.2"
3
3
  end