class PM::IRB

Attributes

dsl[R]

Public Class Methods

new() click to toggle source
# File lib/patchmaster/irb/irb.rb, line 14
def initialize
  @dsl = PM::DSL.new
  @dsl.song("IRB Song")
  @dsl.patch("IRB Patch")
end

Public Instance Methods

run() click to toggle source

For bin/patchmaster.

# File lib/patchmaster/irb/irb.rb, line 21
def run
  ::IRB.start
end