Sha256: edd7ee63d31294bef6cf54858ad0b411c9ba838047a0bfb87225135560085762
Contents?: true
Size: 1.02 KB
Versions: 4
Compression:
Stored size: 1.02 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' => ' ' } end def [](key) overrides = File.exist?(PATH) ? YAML.load(File.read(PATH)) : {} defaults.merge(overrides)[key] rescue => e puts "invalid config file" puts e.message defaults[key] 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
timetrap-1.5.3 | lib/timetrap/config.rb |
timetrap-1.5.2 | lib/timetrap/config.rb |
timetrap-1.5.1 | lib/timetrap/config.rb |
timetrap-1.5.0 | lib/timetrap/config.rb |