tinycms 0.1.6 → 0.1.7

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: 14e557f5dac9c44f3a2a566d323cf0434d5d7d023b00d411bcda4aa7cd98414b
4
- data.tar.gz: 21bdae5b5e652286048f4b158cb2bf5a333e56ddef2252264244dcee8ec85dfd
3
+ metadata.gz: 62bde8dfe454484fa4f1a9717ffb4db16bd61ada3e0075096ea3f7f77a9ece46
4
+ data.tar.gz: 70f051ad82e4ca8d23ab87da48ff46708bda2db1188ba26ab3441272d5bfcc2e
5
5
  SHA512:
6
- metadata.gz: 7b5ad057b5882af99a1e03ca01c743a85e00a6b6787c6a51e59b3db56d472ec48c109779ef3dc7001811d92433cbfa9780096738d9a771690275f23ad7dd3c23
7
- data.tar.gz: 9966cf8828a1ff8ec8ffd0419753804bc9fc0815f58cd02a7edf2a8f95133c310e9f277599f1af6754cf36c7cfd505082d44d963df8759d84101d87869771ac5
6
+ metadata.gz: cdf9bee3a9a66395724e98746fe5e61e87d58dbef9362375f647687d405aaaabbb64a6ea0a9d3597c7cf6a5d60bc5d8c440fa1a4afdcaa36b27e4e1682025927
7
+ data.tar.gz: 6fcf900a130721669fcc50e21503e2fb06ca82998c1968d2958c24a13f08e6363839581fed8be5c4aaa41da31020e5b68f95a5211b2a0fa8431bb3d9108ed786
@@ -2,15 +2,16 @@
2
2
 
3
3
  module Tinycms
4
4
  class Author
5
- def initialize(id:, email:, first_name:, last_name:, created_at:, updated_at:)
5
+ def initialize(id:, email:, first_name:, last_name:, full_name:, 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
+ @full_name = full_name
10
11
  @created_at = created_at
11
12
  @updated_at = updated_at
12
13
  end
13
14
 
14
- attr_reader :id, :email, :first_name, :last_name, :created_at, :updated_at
15
+ attr_reader :id, :email, :first_name, :last_name, :full_name, :created_at, :updated_at
15
16
  end
16
17
  end
data/lib/tinycms/post.rb CHANGED
@@ -2,15 +2,16 @@
2
2
 
3
3
  module Tinycms
4
4
  class Post
5
- def initialize(id:, title:, author:, content:, created_at:, updated_at:)
5
+ def initialize(id:, title:, author:, content:, content_plain_text:, created_at:, updated_at:)
6
6
  @id = id
7
7
  @title = title
8
8
  @author = author
9
9
  @content = content
10
+ @content_plain_text = content_plain_text
10
11
  @created_at = created_at
11
12
  @updated_at = updated_at
12
13
  end
13
14
 
14
- attr_reader :id, :title, :author, :content, :created_at, :updated_at
15
+ attr_reader :id, :title, :author, :content, :content_plain_text, :created_at, :updated_at
15
16
  end
16
17
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tinycms
4
- VERSION = "0.1.6"
4
+ VERSION = "0.1.7"
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.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Jeon