Class: Robin::Actions::HomeTimeline

Inherits:
Object
  • Object
show all
Defined in:
lib/robin/actions/home_timeline.rb

Instance Method Summary collapse

Instance Method Details

#execute(client, output, input) ⇒ Object



3
4
5
6
7
# File 'lib/robin/actions/home_timeline.rb', line 3

def execute(client, output, input)
  client.home_timeline.each do |tweet|
    output.puts tweet.full_text
  end
end