ayadn 4.0.2 → 4.0.3
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/ayadn/post_object.rb +2 -1
- data/lib/ayadn/version.rb +1 -1
- data/spec/mock/ayadn.sqlite +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1dd7f898bc15b2577e0c282bc261c6418338d5d4
|
|
4
|
+
data.tar.gz: 1e24ac8a71d7a9f167755fe6843b933a2cc6c54e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 153e406612449bcbad34c1cee604c9ebfcfc55f4df0a503313fa00aa2e3ddc4bc623f2609e93e45c7176d09b8f0e9b2d8ca8aec0cc1be5d6c934d08882a27ae9
|
|
7
|
+
data.tar.gz: ff2e4e5eacd8203417ada127e87a73f69c50c9782ac51e28b09404513397a968cde9f72c137235013904ffbf1c2ac55d3e435e48d0213fa6f488323d6a2e1d75
|
data/CHANGELOG.md
CHANGED
data/lib/ayadn/post_object.rb
CHANGED
|
@@ -83,7 +83,7 @@ module Ayadn
|
|
|
83
83
|
|
|
84
84
|
class PostObject # also works for messages
|
|
85
85
|
|
|
86
|
-
attr_reader :input, :num_stars, :num_reposts, :num_replies, :text, :created_at, :id, :canonical_url, :machine_only, :you_reposted, :you_starred, :thread_id, :pagination_id, :source, :user, :annotations, :entities, :repost_of, :reply_to, :channel_id
|
|
86
|
+
attr_reader :input, :num_stars, :num_reposts, :num_replies, :text, :created_at, :id, :canonical_url, :machine_only, :you_reposted, :you_starred, :thread_id, :pagination_id, :source, :user, :annotations, :entities, :repost_of, :reply_to, :channel_id, :is_deleted
|
|
87
87
|
attr_accessor :view
|
|
88
88
|
|
|
89
89
|
def initialize hash
|
|
@@ -111,6 +111,7 @@ module Ayadn
|
|
|
111
111
|
@repost_of = PostObject.new(@input["repost_of"]) if !@input["repost_of"].blank?
|
|
112
112
|
@reply_to = @input["reply_to"]
|
|
113
113
|
@channel_id = @input["channel_id"]
|
|
114
|
+
@is_deleted = @input["is_deleted"]
|
|
114
115
|
end
|
|
115
116
|
end
|
|
116
117
|
|
data/lib/ayadn/version.rb
CHANGED
data/spec/mock/ayadn.sqlite
CHANGED
|
Binary file
|