tinycms 0.1.7 → 0.1.8

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: 62bde8dfe454484fa4f1a9717ffb4db16bd61ada3e0075096ea3f7f77a9ece46
4
- data.tar.gz: 70f051ad82e4ca8d23ab87da48ff46708bda2db1188ba26ab3441272d5bfcc2e
3
+ metadata.gz: e94fd38069a3895779a777d9aa3219aeffd58630afb025006c6432ea9a6468b0
4
+ data.tar.gz: c52c045992a4a50f5a60e2584e23114b253400f44f23511b5541a9de4ce37da8
5
5
  SHA512:
6
- metadata.gz: cdf9bee3a9a66395724e98746fe5e61e87d58dbef9362375f647687d405aaaabbb64a6ea0a9d3597c7cf6a5d60bc5d8c440fa1a4afdcaa36b27e4e1682025927
7
- data.tar.gz: 6fcf900a130721669fcc50e21503e2fb06ca82998c1968d2958c24a13f08e6363839581fed8be5c4aaa41da31020e5b68f95a5211b2a0fa8431bb3d9108ed786
6
+ metadata.gz: '0158323b009d92018be5152a0e826dfccacb42bb4249bdda372b526d196f86008d298935371fc3c66bc1de7a89cbf9948a78757537573e4e0b2e4a83c22906b1'
7
+ data.tar.gz: 5058273be55bfe22ed39c4bf0d1ddcea1b2675ed3de480bdbc1d002e51884e30306b2716fe342c72530ca10d18c754a3bbcb898232a68dabd1905a807e524104
@@ -2,12 +2,13 @@
2
2
 
3
3
  module Tinycms
4
4
  class Author
5
- def initialize(id:, email:, first_name:, last_name:, full_name:, created_at:, updated_at:)
5
+ def initialize(id:, email:, first_name:, last_name:, full_name:, avatar_url:, created_at:, updated_at:)
6
6
  @id = id
7
7
  @email = email
8
8
  @first_name = first_name
9
9
  @last_name = last_name
10
10
  @full_name = full_name
11
+ @avatar_url = avatar_url
11
12
  @created_at = created_at
12
13
  @updated_at = updated_at
13
14
  end
@@ -10,6 +10,7 @@ module Tinycms
10
10
  first_name: response_body["first_name"],
11
11
  last_name: response_body["last_name"],
12
12
  full_name: response_body["full_name"],
13
+ avatar_url: response_body["avatar_url"],
13
14
  created_at: Time.zone.parse(response_body["created_at"]),
14
15
  updated_at: Time.zone.parse(response_body["updated_at"])
15
16
  )
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tinycms
4
- VERSION = "0.1.7"
4
+ VERSION = "0.1.8"
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.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Jeon