enklawa 0.0.7 → 0.1.0
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 +8 -8
- data/lib/enklawa/api/forum_thread.rb +3 -2
- data/lib/enklawa/api/request.rb +1 -0
- data/lib/enklawa/api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZTJiOTllYjE0NjU0NWU0Y2JiNWIxNGMyNjBkY2FiODhmMWY3YzI2NA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTM5MTY4NTc1ZTlmMWRkZDc5MTFhMzk2ZWUyMDVjMTdjMjZkN2RmOQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MmUxYzNlMzEyZGI5NDlkODc4YTMzOTliNzcwN2Y1MzU2MTU5NjkyMDA4ODhj
|
10
|
+
YTBhZWMwOTBjNmNkNTkyM2M1MzY1ZmQ1N2E2ZTE1OGJkZDY1Y2FlY2JhZDBh
|
11
|
+
NmFlOWQ3NTA3NTg4M2MyYjZkOWI0OTMyMTZkOGYzZTY1YmQxZDE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
M2U1MmQ5MmRhZjI2MGJkYjA0NDc1YmQxZTdiNmY0ZjQzNmZhMmIwMzY4OTg4
|
14
|
+
Y2RhZTI5MmE2Zjk1ZjFhZWY2YjI2NmQ5YTZjY2YzODRjYWI4N2ZhOTI1NTU1
|
15
|
+
ZjhiYzc5MGJlNTg2NWUyOTZkMjlhM2E2NGE5ZGVjMGM0NzkzNTM=
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module Enklawa
|
2
2
|
module Api
|
3
|
-
class ForumThread < Struct.new(:id, :title, :content, :pub_date, :link)
|
3
|
+
class ForumThread < Struct.new(:id, :title, :content, :pub_date, :link, :author)
|
4
4
|
|
5
5
|
def to_h
|
6
6
|
{
|
@@ -8,7 +8,8 @@ module Enklawa
|
|
8
8
|
title: title,
|
9
9
|
content: content,
|
10
10
|
pub_date: pub_date.utc.iso8601,
|
11
|
-
link: link
|
11
|
+
link: link,
|
12
|
+
author: author
|
12
13
|
}
|
13
14
|
end
|
14
15
|
|
data/lib/enklawa/api/request.rb
CHANGED
data/lib/enklawa/api/version.rb
CHANGED