class Raketary::IRBCmd

@author Jonathan Bradley Whited @since 0.1.0

Public Class Methods

new(*) click to toggle source
Calls superclass method Raketary::Cmd::new
# File lib/raketary/irb_cmd.rb, line 23
def initialize(*)
  super

  parse! do |op|
    #op.separator op.summary_indent
  end
end

Public Instance Methods

run() click to toggle source
Calls superclass method Raketary::Cmd#run
# File lib/raketary/irb_cmd.rb, line 31
def run
  super()

  irb_task = Raketeer::IRBTask.new
  irb_task = Rake::Task[irb_task.name]

  irb_task.reenable
  irb_task.invoke

  app.ran_cmd = true
end