Class: Twitter::Action::Reply
- Defined in:
- lib/twitter/action/reply.rb
Instance Attribute Summary
Attributes inherited from Tweet
Attributes inherited from Base
Instance Method Summary collapse
-
#target_objects ⇒ Array<Twitter::Tweet>
A collection of tweets that reply to a user.
-
#targets ⇒ Array<Twitter::Tweet>
A collection that contains the replied-to tweets.
Methods inherited from Tweet
Methods included from Creatable
Methods inherited from Base
#[], attr_reader, fetch, fetch_or_new, from_response, identity_map, #initialize, store, #update
Constructor Details
This class inherits a constructor from Twitter::Base
Instance Method Details
#target_objects ⇒ Array<Twitter::Tweet>
A collection of tweets that reply to a user
10 11 12 13 14 |
# File 'lib/twitter/action/reply.rb', line 10 def target_objects @target_objects = Array(@attrs[:target_objects]).map do |tweet| Twitter::Tweet.fetch_or_new(tweet) end end |
#targets ⇒ Array<Twitter::Tweet>
A collection that contains the replied-to tweets
19 20 21 22 23 |
# File 'lib/twitter/action/reply.rb', line 19 def targets @targets = Array(@attrs[:targets]).map do |tweet| Twitter::Tweet.fetch_or_new(tweet) end end |