Class: RegexpDebuggerApp

Inherits:
Wx::App
  • Object
show all
Defined in:
lib/regexp_debugger.rb

Instance Method Summary collapse

Instance Method Details

#on_initObject



78
79
80
81
82
83
84
85
86
# File 'lib/regexp_debugger.rb', line 78

def on_init
  frame = RegexpDebuggerFrame.new(
    "Regexp Debugger",
    Wx::DEFAULT_POSITION, 
    Wx::Size.new(570, 750)
  )

  frame.show(true)
end