Class: Twat::Subcommands::Update
- Defined in:
- lib/twat/subcommands/update.rb
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Base
#args, #auth!, #beep, #config, #deentitize, #enable_readline!, #format, #initialize, #needs_arguments, #needs_at_least, #opts, #pad, #reader, #run!, #usage, #usage_and_exit!
Methods included from Exceptions
Constructor Details
This class inherits a constructor from Twat::Subcommands::Base
Class Method Details
.usage ⇒ Object
15 16 17 |
# File 'lib/twat/subcommands/update.rb', line 15 def self.usage "Usage: twat update tweet goes here" end |
Instance Method Details
#run ⇒ Object
4 5 6 7 8 9 10 11 12 13 |
# File 'lib/twat/subcommands/update.rb', line 4 def run msg = @argv.join(" ") raise TweetTooLong if msg.length > 140 usage_and_exit! if msg == "" auth! Twitter.update(msg) #puts msg end |