module Almanack

Constants

CODENAME
HOMEPAGE
ISSUES
ONE_DAY
ONE_HOUR
ONE_MONTH
ONE_YEAR
VERSION

Public Class Methods

calendar() click to toggle source
# File lib/almanack/base.rb, line 14
def calendar
  @calendar ||= Calendar.new(config)
end
config() { |config| ... } click to toggle source
# File lib/almanack/base.rb, line 8
def config(&block)
  @config ||= Configuration.new
  yield @config if block_given?
  @config
end
reset!() click to toggle source
# File lib/almanack/base.rb, line 18
def reset!
  config.reset!
end