module Pomodoro::Gui

Constants

VERSION

Public Class Methods

init(options={}) click to toggle source
# File lib/pomodoro/gui.rb, line 7
def self.init(options={})
  begin
    window = Pomodoro::Gui::Window.new(options)
    window.show
  rescue Interrupt => e
    puts "\r Something goes wrong! :("
  end
end
root() click to toggle source
# File lib/pomodoro/gui.rb, line 16
def self.root
  File.dirname __dir__
end