class Widgets::Debug
Break the program and jump into debugger
Public Class Methods
Source
# File src/widgets/debug.rb, line 7 def initialize options super @button = Gtk::Button.new label: 'bye 🐛' @button.signal_connect("clicked") do binding.break if $stdout.isatty and $stdin.isatty end append @button end
Calls superclass method
Widgets::Widget::new