lib/timetrap/config.rb in timetrap-1.14.2 vs lib/timetrap/config.rb in timetrap-1.14.3
- old
+ new
@@ -35,10 +35,12 @@
# automatically check out of any running tasks when checking in.
'auto_checkout' => false,
# interactively prompt for a note if one isn't passed when checking in.
'require_note' => false,
# command to launch external editor (false if no external editor used)
- 'note_editor' => false
+ 'note_editor' => false,
+ # set day of the week when determining start of the week.
+ 'week_start' => "Monday",
}
end
def [](key)
overrides = File.exist?(PATH) ? YAML.load(erb_render(File.read(PATH))) : {}