tinycms 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8b26637277ab8f25e0a52fb3a922f75e70c26f12c76f8eeb65e7da52e09626be
4
- data.tar.gz: f6d26c1525168d41de67c5175f74018b44a6de8890382b1f523af1bfae539e40
3
+ metadata.gz: 4306439677646271ba2cdf57b36412e8d3bcaa02b97fb9d550134374220f8a40
4
+ data.tar.gz: ee2fbcb54228d9522a8b961f3a5cf37ae3f6a29a1b1b2f3bca2731d34f07f12d
5
5
  SHA512:
6
- metadata.gz: fbecea65017edf08c97cdc8dca717c38f798dcad8da08653de8bec9d526c095cec21992edcc2e5bb18764dbcb722d82ddacb7313199734d1d60f2d78ec0e06e7
7
- data.tar.gz: ae10dc67c6c6a015bf98d0145e9be5bb5b03013632d8ac2bd0a01d734421dd5455d9db6778f143ef53b0dedad28d9fc028049dc91268932343ec97de3b07a74f
6
+ metadata.gz: c911d4af5247ab97273771e81a8a7f91a4d803ea552db8de1da3dc750d19ea51d8b987a464d653fce5eed4639723f01b64327c52480321670b8ba7d19f56101b
7
+ data.tar.gz: 2440cb86c5837aa38a20e99b8b61b200c432c082998e89eb4c06124b8441271cbb5099e7bdc98d7869430ecfb320d022d2407c674bbdbe77e8fb14536a7e396e
@@ -9,8 +9,8 @@ module Tinycms
9
9
  email: response_body["email"],
10
10
  first_name: response_body["first_name"],
11
11
  last_name: response_body["last_name"],
12
- created_at: response_body["created_at"],
13
- updated_at: response_body["updated_at"]
12
+ created_at: Time.zone.parse(response_body["created_at"]),
13
+ updated_at: Time.zone.parse(response_body["updated_at")]
14
14
  )
15
15
  end
16
16
  end
@@ -12,8 +12,8 @@ module Tinycms
12
12
  name: response_body["name"],
13
13
  description: response_body["description"],
14
14
  posts: posts,
15
- created_at: response_body["created_at"],
16
- updated_at: response_body["updated_at"]
15
+ created_at: Time.zone.parse(response_body["created_at"]),
16
+ updated_at: Time.zone.parse(response_body["updated_at"])
17
17
  )
18
18
  end
19
19
  end
@@ -9,8 +9,8 @@ module Tinycms
9
9
  title: response_body["title"],
10
10
  author: ::Tinycms::Authors::Mapper.map(response_body["author"]),
11
11
  content: response_body["content"],
12
- created_at: response_body["created_at"],
13
- updated_at: response_body["updated_at"]
12
+ created_at: Time.zone.parse(response_body["created_at"]),
13
+ updated_at: Time.zone.parse(response_body["updated_at"])
14
14
  )
15
15
  end
16
16
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tinycms
4
- VERSION = "0.1.3"
4
+ VERSION = "0.1.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tinycms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Jeon