ayadn 4.0.2 → 4.0.3

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
  SHA1:
3
- metadata.gz: 908fa1580b37baa5095a2f47c999d5b8f8d863fd
4
- data.tar.gz: e1670cf15bc7cc7967b1f6f56ec39dd41781da4c
3
+ metadata.gz: 1dd7f898bc15b2577e0c282bc261c6418338d5d4
4
+ data.tar.gz: 1e24ac8a71d7a9f167755fe6843b933a2cc6c54e
5
5
  SHA512:
6
- metadata.gz: 8120a8376d3e633531e7ec71863d787a6fbf5617672eaeda4230012f494e57d50860f50deafd91dbbb8a85a1d507321e4fc91d78e1f190bd15741ac6471e7525
7
- data.tar.gz: 193b2cda0bd8844c9bc17bdf7c12cbde474e7c05d90b8778d52268c0984ed087b943b91d5c0e4093d07ecc986135dc6fb671d3537054c4201128ccf599ec8a5e
6
+ metadata.gz: 153e406612449bcbad34c1cee604c9ebfcfc55f4df0a503313fa00aa2e3ddc4bc623f2609e93e45c7176d09b8f0e9b2d8ca8aec0cc1be5d6c934d08882a27ae9
7
+ data.tar.gz: ff2e4e5eacd8203417ada127e87a73f69c50c9782ac51e28b09404513397a968cde9f72c137235013904ffbf1c2ac55d3e435e48d0213fa6f488323d6a2e1d75
@@ -1,3 +1,7 @@
1
+ ## 4.0.3 - 2016-09-03 - 'S U R V I V E'
2
+
3
+ - Fixed: bug introduced by the last fix (yay for incomplete tests...)
4
+
1
5
  ## 4.0.2 - 2016-09-03 - 'Defeated Sanity'
2
6
 
3
7
  - Fixed: crash in configuration diagnostics when checking settings
@@ -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
 
@@ -1,4 +1,4 @@
1
1
  # encoding: utf-8
2
2
  module Ayadn
3
- VERSION = "4.0.2"
3
+ VERSION = "4.0.3"
4
4
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ayadn
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Dejonckheere