Class: ClockIndicator::CurrentMonthCalendar

Inherits:
Object
  • Object
show all
Defined in:
lib/clock_indicator/current_month_calendar.rb

Instance Method Summary collapse

Instance Method Details

#calendarObject



3
4
5
6
7
# File 'lib/clock_indicator/current_month_calendar.rb', line 3

def calendar
  @calendar ||= Gtk::Calendar.new.tap do |c|
    c.month = Time.now.month - 1
  end
end