Sha256: 4b085add7b7849e629e33a421c3636288caa81aef2d30e678c48608f327dba00
Contents?: true
Size: 1.66 KB
Versions: 1
Compression:
Stored size: 1.66 KB
Contents
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: # <code> # t configure # </code> 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
timetrap-1.8.3.beta1 | lib/timetrap/config.rb |