Class: Robin::Actions::Help

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

Constant Summary collapse

HELP =
<<EOF 
Usage:
    -user               - Authenticate new user
    [-s]                - Authenticated user's home timeline
    <tweet>, -t <tweet> - New Tweet
    -fr [<user>]        - Followers for the authenticated user or a specific user handle
    -i [<user>]         - The user timeline for the authenticated user or specified user handle
    -h                  - This help message
EO

Instance Method Summary collapse

Instance Method Details

#execute(client, output, input) ⇒ Object



12
13
14
# File 'lib/robin/actions/help.rb', line 12

def execute(client, output, input)
  output.puts HELP
end