Class: Birdwatcher::Commands::Irb
- Inherits:
-
Birdwatcher::Command
- Object
- Birdwatcher::Command
- Birdwatcher::Commands::Irb
- Defined in:
- lib/birdwatcher/commands/irb.rb
Constant Summary
Constants inherited from Birdwatcher::Command
Birdwatcher::Command::ARGUMENT_SEPARATOR
Constants included from Birdwatcher::Concerns::Concurrency
Birdwatcher::Concerns::Concurrency::DEFAULT_THREAD_POOL_SIZE
Constants included from Birdwatcher::Concerns::Core
Birdwatcher::Concerns::Core::DATA_DIRECTORY
Instance Attribute Summary
Attributes inherited from Birdwatcher::Command
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Birdwatcher::Command
auto_completion, auto_completion_strings, descendants, #execute, has_name?, meta, meta=
Methods included from Birdwatcher::Concerns::Concurrency
Methods included from Birdwatcher::Concerns::Persistence
included, #save_status, #save_user
Methods included from Birdwatcher::Concerns::Presentation
included, #make_status_summary_output, #make_url_summary_output, #make_user_details_output, #make_user_summary_output, #output_status_summary, #output_user_details, #output_user_summary, #page_text
Methods included from Birdwatcher::Concerns::Outputting
#confirm, #error, #fatal, included, #info, #line_separator, #newline, #output, #output_formatted, #task, #warn
Methods included from Birdwatcher::Concerns::Util
#escape_html, #excerpt, included, #number_to_human_size, #parse_time, #pluralize, #strip_control_characters, #strip_html, #suppress_output, #suppress_warnings, #time_ago_in_words, #unescape_html
Methods included from Birdwatcher::Concerns::Core
#console, #current_workspace, #current_workspace=, #database, included, #klout_client, #read_data_file, #twitter_client
Class Method Details
.detailed_usage ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/birdwatcher/commands/irb.rb', line 10 def self.detailed_usage "The \#{'irb'.bold} command can be used start an interactive Ruby shell (IRB) with\nall of the Birdwatcher classes and models loaded.\n\n\#{'NOTE:'.bold} This command is not intended for normal users of Birdwatcher but\ncan be convenient for debugging or more complex one-off data manipulation, if you\nknow what you're doing.\n\n\#{'USAGE:'.bold}\n\n\#{'Start an interactive Ruby shell:'.bold}\n irb\n" end |
Instance Method Details
#run ⇒ Object
26 27 28 29 30 31 |
# File 'lib/birdwatcher/commands/irb.rb', line 26 def run require "irb" require "awesome_print" AwesomePrint.irb! suppress_warnings { IRB.start } end |