module Timetrap module Config extend self PATH = ENV['TIMETRAP_CONFIG_FILE'] || File.join(ENV['HOME'], '.timetrap.yml') # Application defaults. # # These are written to a config file by invoking: # # t configure # def defaults { # Path to the sqlite db 'database_file' => "#{ENV['HOME']}/.timetrap.db", # Unit of time for rounding (-r) in seconds 'round_in_seconds' => 900, # delimiter used when appending notes with `t edit --append` 'append_notes_delimiter' => ' ', # an array of directories to search for user defined fomatter classes 'formatter_search_paths' => [ "#{ENV['HOME']}/.timetrap/formatters" ], # formatter to use when display is invoked without a --format option 'default_formatter' => 'text', # the default command to when you run `t`. default to printing usage. 'default_command' => nil, # only allow one running entry at a time. # when set to false it is possible to have one running entry per sheet. 'sheets_are_exclusive' => false } end def [](key) overrides = File.exist?(PATH) ? YAML.load(erb_render(File.read(PATH))) : {} defaults.merge(overrides)[key] rescue => e warn "invalid config file" warn e.message defaults[key] end def erb_render(content) ERB.new(content).result end def configure! configs = if File.exist?(PATH) defaults.merge(YAML.load_file(PATH)) else defaults end File.open(PATH, 'w') do |fh| fh.puts(configs.to_yaml) end end end end