timr 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. checksums.yaml +4 -4
  2. data/.ackrc +9 -0
  3. data/.editorconfig +1 -0
  4. data/.env.example +7 -0
  5. data/.github/CONTRIBUTING.md +32 -0
  6. data/.github/ISSUE_TEMPLATE.md +13 -0
  7. data/.gitignore +8 -2
  8. data/.rdoc_options +21 -0
  9. data/.travis.yml +10 -7
  10. data/Gemfile +8 -0
  11. data/README.md +216 -3
  12. data/bin/.gitignore +2 -0
  13. data/bin/README.md +17 -0
  14. data/bin/build.sh +14 -0
  15. data/bin/build_api.sh +14 -0
  16. data/bin/build_coverage.sh +23 -0
  17. data/bin/build_info.sh +27 -0
  18. data/bin/build_man.sh +41 -0
  19. data/bin/clean.sh +14 -0
  20. data/bin/dev_setup.sh +19 -0
  21. data/bin/install.sh +49 -0
  22. data/bin/publish +38 -0
  23. data/bin/release.sh +35 -0
  24. data/bin/test.sh +19 -0
  25. data/bin/timr +20 -40
  26. data/bin/timr_bash_completion.sh +337 -0
  27. data/bin/uninstall.sh +24 -0
  28. data/lib/timr.rb +36 -8
  29. data/lib/timr/command/basic_command.rb +170 -0
  30. data/lib/timr/command/continue_command.rb +86 -0
  31. data/lib/timr/command/help_command.rb +137 -0
  32. data/lib/timr/command/log_command.rb +297 -0
  33. data/lib/timr/command/pause_command.rb +89 -0
  34. data/lib/timr/command/pop_command.rb +176 -0
  35. data/lib/timr/command/push_command.rb +141 -0
  36. data/lib/timr/command/report_command.rb +689 -0
  37. data/lib/timr/command/start_command.rb +172 -0
  38. data/lib/timr/command/status_command.rb +198 -0
  39. data/lib/timr/command/stop_command.rb +127 -0
  40. data/lib/timr/command/task_command.rb +318 -0
  41. data/lib/timr/command/track_command.rb +381 -0
  42. data/lib/timr/command/version_command.rb +18 -0
  43. data/lib/timr/duration.rb +159 -0
  44. data/lib/timr/exception/timr_error.rb +113 -0
  45. data/lib/timr/ext/time.rb +12 -0
  46. data/lib/timr/helper/datetime_helper.rb +128 -0
  47. data/lib/timr/helper/terminal_helper.rb +58 -0
  48. data/lib/timr/helper/translation_helper.rb +45 -0
  49. data/lib/timr/model/basic_model.rb +287 -0
  50. data/lib/timr/model/config.rb +48 -0
  51. data/lib/timr/model/foreign_id_db.rb +84 -0
  52. data/lib/timr/model/stack.rb +161 -0
  53. data/lib/timr/model/task.rb +1039 -0
  54. data/lib/timr/model/track.rb +589 -0
  55. data/lib/timr/progressbar.rb +41 -0
  56. data/lib/timr/simple_opt_parser.rb +230 -0
  57. data/lib/timr/status.rb +70 -0
  58. data/lib/timr/table.rb +88 -0
  59. data/lib/timr/timr.rb +500 -558
  60. data/lib/timr/version.rb +4 -15
  61. data/man/.gitignore +2 -0
  62. data/man/_footer +3 -0
  63. data/man/timr-continue.1 +48 -0
  64. data/man/timr-continue.1.ronn +39 -0
  65. data/man/timr-ftime.7 +77 -0
  66. data/man/timr-ftime.7.ronn +57 -0
  67. data/man/timr-log.1 +109 -0
  68. data/man/timr-log.1.ronn +87 -0
  69. data/man/timr-pause.1 +56 -0
  70. data/man/timr-pause.1.ronn +45 -0
  71. data/man/timr-pop.1 +66 -0
  72. data/man/timr-pop.1.ronn +53 -0
  73. data/man/timr-push.1 +25 -0
  74. data/man/timr-push.1.ronn +20 -0
  75. data/man/timr-report.1 +228 -0
  76. data/man/timr-report.1.ronn +193 -0
  77. data/man/timr-start.1 +100 -0
  78. data/man/timr-start.1.ronn +82 -0
  79. data/man/timr-status.1 +53 -0
  80. data/man/timr-status.1.ronn +42 -0
  81. data/man/timr-stop.1 +75 -0
  82. data/man/timr-stop.1.ronn +60 -0
  83. data/man/timr-task.1 +147 -0
  84. data/man/timr-task.1.ronn +115 -0
  85. data/man/timr-track.1 +109 -0
  86. data/man/timr-track.1.ronn +89 -0
  87. data/man/timr.1 +119 -0
  88. data/man/timr.1.ronn +68 -0
  89. data/timr.gemspec +18 -3
  90. data/timr.sublime-project +20 -1
  91. metadata +142 -23
  92. data/Makefile +0 -12
  93. data/Makefile.common +0 -56
  94. data/lib/timr/stack.rb +0 -81
  95. data/lib/timr/task.rb +0 -258
  96. data/lib/timr/track.rb +0 -167
  97. data/lib/timr/window.rb +0 -259
  98. data/lib/timr/window_help.rb +0 -41
  99. data/lib/timr/window_tasks.rb +0 -30
  100. data/lib/timr/window_test.rb +0 -20
  101. data/lib/timr/window_timeline.rb +0 -33
  102. data/tests/tc_stack.rb +0 -121
  103. data/tests/tc_task.rb +0 -190
  104. data/tests/tc_track.rb +0 -144
  105. data/tests/tc_window.rb +0 -428
  106. data/tests/ts_all.rb +0 -6
@@ -0,0 +1,89 @@
1
+ timr-track(1) -- Show, add, edit, move, or remove a Track.
2
+ ===
3
+
4
+ ## SYNOPSIS
5
+
6
+ timr track [show] [<options>] <track_id>...
7
+
8
+ timr track add [<options>]
9
+
10
+ timr track set [<options>] <track_id>
11
+
12
+ timr track remove <track_id>...
13
+
14
+ ## DESCRIPTION
15
+
16
+ This command takes several subcommands. Per default, when providing a Track ID it displays details about this specific Track.
17
+
18
+ ## SUBCOMMANDS
19
+
20
+ * add:
21
+ Add a new Track.
22
+
23
+ * set:
24
+ Edit an existing Track. To move a Track to another Task see `--task` option in section SET OPTIONS.
25
+
26
+ * show:
27
+ Default when not providing a specific subcommand.
28
+
29
+ * remove:
30
+ Delete a Track and all informations about this Track. This cannot be undone.
31
+
32
+ ## ADD/SET OPTIONS
33
+
34
+ * -m, --message <message>:
35
+ Track Message. Details about what you have done.
36
+
37
+ * --sd, --start-date <date>:
38
+ Start Date. See timr-ftime(7).
39
+
40
+ * --st, --start-time <time>:
41
+ Start Time. See timr-ftime(7).
42
+
43
+ * --ed, --end-date <date>:
44
+ End Date. See timr-ftime(7).
45
+
46
+ * --et, --end-time <time>:
47
+ End Time. See timr-ftime(7).
48
+
49
+ * -b, --billed:
50
+ Mark Track as billed.
51
+
52
+ * --unbilled:
53
+ Mark Track as unbilled.
54
+
55
+ ## SET OPTIONS
56
+
57
+ --task <task_id>:
58
+ Move Track to another Task. <task_id> can also be a Foreign ID. See timr-task(1).
59
+
60
+ ## SHOW OPTIONS
61
+
62
+ * -t, --task:
63
+ Show Task of Track. Same as `timr task <task_id>`.
64
+
65
+ ## GENERAL OPTIONS
66
+
67
+ * -h, --help:
68
+ Displays the help page.
69
+
70
+ ## EXAMPLES
71
+
72
+ ```
73
+ timr track abcd12
74
+ timr track show abcd12
75
+ timr track set --start-date 2017-01-01 --start-time 10:00 \
76
+ --end-date 2017-01-02 --end-time 15:30 abcd12
77
+ timr track set --track xyz345 abcd12
78
+ timr track add --start-date 2017-01-02 --start-time 16:00 \
79
+ --end-date 2017-01-02 --end-time 17:00 xyz345
80
+ timr track remove abcd12
81
+ ```
82
+
83
+ ## API REFERENCE
84
+
85
+ <https://timr.fox21.at/api/TheFox/Timr/Command/TrackCommand.html>
86
+
87
+ ## SEE ALSO
88
+
89
+ timr-task(1), timr-ftime(7)
data/man/timr.1 ADDED
@@ -0,0 +1,119 @@
1
+ .\" generated with Ronn/v0.7.3
2
+ .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
+ .
4
+ .TH "TIMR" "1" "April 2017" "FOX21.at" "Timr Manual"
5
+ .
6
+ .SH "NAME"
7
+ \fBtimr\fR \- Time Tracking for Hackers\.
8
+ .
9
+ .SH "SYNOPSIS"
10
+ timr [\-V|\-\-version] [\-h|\-\-help] [\-C \fIpath\fR] \fIcommand\fR [\fIargs\fR]
11
+ .
12
+ .SH "OPTIONS"
13
+ .
14
+ .TP
15
+ \-V, \-\-version
16
+ Show version\.
17
+ .
18
+ .TP
19
+ \-h, \-\-help
20
+ Show help\.
21
+ .
22
+ .TP
23
+ \-C \fIpath\fR
24
+ Set path to the project base directory\. Default: ~/\.timr/defaultc
25
+ .
26
+ .SH "DESCRIPTION"
27
+ Timr is a time tracking tool for the Command\-line, written in Ruby\. You can track your time spent for a specific project\. The main focus of this tool is to use it on the Command\-line and make automatic reports\. All data are stored in YAML files\. So editing can also be done by using your favorite editor\.
28
+ .
29
+ .SH "COMMANDS"
30
+ .
31
+ .IP "\(bu" 4
32
+ timr\-start(1)
33
+ .
34
+ .IP "\(bu" 4
35
+ timr\-stop(1)
36
+ .
37
+ .IP "\(bu" 4
38
+ timr\-pause(1)
39
+ .
40
+ .IP "\(bu" 4
41
+ timr\-continue(1)
42
+ .
43
+ .IP "\(bu" 4
44
+ timr\-push(1)
45
+ .
46
+ .IP "\(bu" 4
47
+ timr\-pop(1)
48
+ .
49
+ .IP "\(bu" 4
50
+ timr\-status(1)
51
+ .
52
+ .IP "\(bu" 4
53
+ timr\-log(1)
54
+ .
55
+ .IP "\(bu" 4
56
+ timr\-task(1)
57
+ .
58
+ .IP "\(bu" 4
59
+ timr\-track(1)
60
+ .
61
+ .IP "\(bu" 4
62
+ timr\-report(1)
63
+ .
64
+ .IP "" 0
65
+ .
66
+ .SH "MISCELLANEOUS"
67
+ .
68
+ .IP "\(bu" 4
69
+ timr\-ftime(7)
70
+ .
71
+ .IP "" 0
72
+ .
73
+ .SH "ONLINE RESCOURCES"
74
+ .
75
+ .IP "\(bu" 4
76
+ Homepage \fIhttps://timr\.fox21\.at/\fR
77
+ .
78
+ .IP "\(bu" 4
79
+ API Reference Mainpage \fIhttps://timr\.fox21\.at/api/\fR
80
+ .
81
+ .IP "\(bu" 4
82
+ Man pages \fIhttps://timr\.fox21\.at/man/timr\.1\.html\fR
83
+ .
84
+ .IP "\(bu" 4
85
+ Code Coverage \fIhttps://timr\.fox21\.at/coverage/\fR
86
+ .
87
+ .IP "\(bu" 4
88
+ GitHub Page \fIhttps://github\.com/TheFox/timr\fR
89
+ .
90
+ .IP "\(bu" 4
91
+ RubyGems Page \fIhttps://rubygems\.org/gems/timr\fR
92
+ .
93
+ .IP "\(bu" 4
94
+ Travis CI Repository \fIhttps://travis\-ci\.org/TheFox/timr\fR
95
+ .
96
+ .IP "" 0
97
+ .
98
+ .SH "BUGS"
99
+ Report bugs to
100
+ .
101
+ .IP "\(bu" 4
102
+ the GitHub issues tracker \fIhttps://github\.com/TheFox/timr/issues\fR
103
+ .
104
+ .IP "\(bu" 4
105
+ or via email to \fIchristian@fox21\.at\fR\.
106
+ .
107
+ .IP "" 0
108
+ .
109
+ .SH "AUTHOR"
110
+ Timr was created by Christian Mayer\.
111
+ .
112
+ .SH "COPYRIGHT"
113
+ Copyright (C) 2016 Christian Mayer \fIhttps://fox21\.at\fR
114
+ .
115
+ .P
116
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version\.
117
+ .
118
+ .P
119
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE\. See the GNU General Public License for more details\. You should have received a copy of the GNU General Public License along with this program\. If not, see \fIhttp://www\.gnu\.org/licenses/\fR\.
data/man/timr.1.ronn ADDED
@@ -0,0 +1,68 @@
1
+ timr(1) -- Time Tracking for Hackers.
2
+ ===
3
+
4
+ ## SYNOPSIS
5
+
6
+ timr [-V|--version] [-h|--help] [-C <path>] <command> [<args>]
7
+
8
+ ## OPTIONS
9
+
10
+ * -V, --version:
11
+ Show version.
12
+
13
+ * -h, --help:
14
+ Show help.
15
+
16
+ * -C <path>:
17
+ Set path to the project base directory. Default: ~/.timr/defaultc
18
+
19
+ ## DESCRIPTION
20
+
21
+ Timr is a time tracking tool for the Command-line, written in Ruby. You can track your time spent for a specific project. The main focus of this tool is to use it on the Command-line and make automatic reports. All data are stored in YAML files. So editing can also be done by using your favorite editor.
22
+
23
+ ## COMMANDS
24
+
25
+ * timr-start(1)
26
+ * timr-stop(1)
27
+ * timr-pause(1)
28
+ * timr-continue(1)
29
+ * timr-push(1)
30
+ * timr-pop(1)
31
+ * timr-status(1)
32
+ * timr-log(1)
33
+ * timr-task(1)
34
+ * timr-track(1)
35
+ * timr-report(1)
36
+
37
+ ## MISCELLANEOUS
38
+
39
+ * timr-ftime(7)
40
+
41
+ ## ONLINE RESCOURCES
42
+
43
+ - [Homepage](https://timr.fox21.at/)
44
+ - [API Reference Mainpage](https://timr.fox21.at/api/)
45
+ - [Man pages](https://timr.fox21.at/man/timr.1.html)
46
+ - [Code Coverage](https://timr.fox21.at/coverage/)
47
+ - [GitHub Page](https://github.com/TheFox/timr)
48
+ - [RubyGems Page](https://rubygems.org/gems/timr)
49
+ - [Travis CI Repository](https://travis-ci.org/TheFox/timr)
50
+
51
+ ## BUGS
52
+
53
+ Report bugs to
54
+
55
+ - the [GitHub issues tracker](https://github.com/TheFox/timr/issues)
56
+ - or via email to <christian@fox21.at>.
57
+
58
+ ## AUTHOR
59
+
60
+ Timr was created by Christian Mayer.
61
+
62
+ ## COPYRIGHT
63
+
64
+ Copyright (C) 2016 [Christian Mayer](https://fox21.at)
65
+
66
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
67
+
68
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
data/timr.gemspec CHANGED
@@ -24,9 +24,24 @@ Gem::Specification.new do |spec|
24
24
  spec.required_ruby_version = '>=2.1.0'
25
25
 
26
26
  spec.add_development_dependency 'minitest', '~>5.8'
27
+ spec.add_development_dependency 'simplecov', '~>0.12'
28
+ spec.add_development_dependency 'simplecov-phpunit', '~>1.0'
29
+ spec.add_development_dependency 'pry', '~>0.10'
27
30
 
28
- spec.add_dependency 'curses', '~>1.0'
29
- spec.add_dependency 'uuid', '~>2.3'
31
+ spec.add_runtime_dependency 'uuid', '~>2.3'
32
+ spec.add_runtime_dependency 'term-ansicolor', '~>1.4'
33
+ #spec.add_runtime_dependency 'terminal-table', '~>1.7'
34
+ # spec.add_runtime_dependency 'activesupport', '~>5.0'
35
+ spec.add_runtime_dependency 'chronic_duration', '~>0.10'
36
+ # spec.add_runtime_dependency 'progress_bar', '~>1.1'
37
+ # spec.add_runtime_dependency 'ruby-progressbar', '~>1.8'
38
+ spec.add_runtime_dependency 'thefox-ext', '~>1.5'
30
39
 
31
- spec.add_dependency 'thefox-ext', '~>1.4'
40
+ # spec.add_runtime_dependency 'sqlite3', '~>1.3'
41
+ # spec.add_runtime_dependency 'rom-sql', '~>1.2'
42
+ # spec.add_runtime_dependency 'rom-yaml', '~>1.0'
43
+ # spec.add_runtime_dependency 'rom-repository', '~>1.3'
44
+ # spec.add_runtime_dependency 'timecop', '~>0.8'
45
+
46
+ spec.post_install_message = %q{See 'timr --help' for more details.}
32
47
  end
data/timr.sublime-project CHANGED
@@ -3,8 +3,27 @@
3
3
  {
4
4
  "path": ".",
5
5
  "name": "Timr",
6
- "folder_exclude_patterns": [ ],
6
+ "folder_exclude_patterns": [ "api", "coverage" ],
7
7
  "file_exclude_patterns": [ ]
8
8
  }
9
+ ],
10
+ "settings": {
11
+ "rulers": [ 80, 106 ]
12
+ },
13
+ "build_systems":[
14
+ {
15
+ "name": "Build",
16
+ "cmd": [ "./bin/build.sh" ],
17
+ "working_dir": "${project_path:${folder}}",
18
+ "path": "$HOME/.rbenv/shims:/usr/local/bin:$PATH",
19
+ "shell": true
20
+ },
21
+ {
22
+ "name": "Build man",
23
+ "cmd": [ "./bin/build_man.sh -p" ],
24
+ "working_dir": "${project_path:${folder}}",
25
+ "path": "$HOME/.rbenv/shims:/usr/local/bin:$PATH",
26
+ "shell": true
27
+ }
9
28
  ]
10
29
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: timr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Mayer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-01 00:00:00.000000000 Z
11
+ date: 2017-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -25,19 +25,47 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '5.8'
27
27
  - !ruby/object:Gem::Dependency
28
- name: curses
28
+ name: simplecov
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: simplecov-phpunit
29
43
  requirement: !ruby/object:Gem::Requirement
30
44
  requirements:
31
45
  - - "~>"
32
46
  - !ruby/object:Gem::Version
33
47
  version: '1.0'
34
- type: :runtime
48
+ type: :development
35
49
  prerelease: false
36
50
  version_requirements: !ruby/object:Gem::Requirement
37
51
  requirements:
38
52
  - - "~>"
39
53
  - !ruby/object:Gem::Version
40
54
  version: '1.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.10'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.10'
41
69
  - !ruby/object:Gem::Dependency
42
70
  name: uuid
43
71
  requirement: !ruby/object:Gem::Requirement
@@ -53,7 +81,7 @@ dependencies:
53
81
  - !ruby/object:Gem::Version
54
82
  version: '2.3'
55
83
  - !ruby/object:Gem::Dependency
56
- name: thefox-ext
84
+ name: term-ansicolor
57
85
  requirement: !ruby/object:Gem::Requirement
58
86
  requirements:
59
87
  - - "~>"
@@ -66,6 +94,34 @@ dependencies:
66
94
  - - "~>"
67
95
  - !ruby/object:Gem::Version
68
96
  version: '1.4'
97
+ - !ruby/object:Gem::Dependency
98
+ name: chronic_duration
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '0.10'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '0.10'
111
+ - !ruby/object:Gem::Dependency
112
+ name: thefox-ext
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.5'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '1.5'
69
125
  description: Time Tracking for Hackers.
70
126
  email: christian@fox21.at
71
127
  executables:
@@ -73,37 +129,101 @@ executables:
73
129
  extensions: []
74
130
  extra_rdoc_files: []
75
131
  files:
132
+ - ".ackrc"
76
133
  - ".editorconfig"
134
+ - ".env.example"
135
+ - ".github/CONTRIBUTING.md"
136
+ - ".github/ISSUE_TEMPLATE.md"
77
137
  - ".gitignore"
138
+ - ".gitlab-ci.yml"
139
+ - ".rdoc_options"
78
140
  - ".travis.yml"
79
141
  - Gemfile
80
- - Makefile
81
- - Makefile.common
82
142
  - README.md
143
+ - bin/.gitignore
144
+ - bin/README.md
145
+ - bin/build.sh
146
+ - bin/build_api.sh
147
+ - bin/build_coverage.sh
148
+ - bin/build_info.sh
149
+ - bin/build_man.sh
150
+ - bin/clean.sh
151
+ - bin/dev_setup.sh
152
+ - bin/install.sh
153
+ - bin/publish
154
+ - bin/release.sh
155
+ - bin/test.sh
83
156
  - bin/timr
157
+ - bin/timr_bash_completion.sh
158
+ - bin/uninstall.sh
84
159
  - lib/timr.rb
85
- - lib/timr/stack.rb
86
- - lib/timr/task.rb
160
+ - lib/timr/command/basic_command.rb
161
+ - lib/timr/command/continue_command.rb
162
+ - lib/timr/command/help_command.rb
163
+ - lib/timr/command/log_command.rb
164
+ - lib/timr/command/pause_command.rb
165
+ - lib/timr/command/pop_command.rb
166
+ - lib/timr/command/push_command.rb
167
+ - lib/timr/command/report_command.rb
168
+ - lib/timr/command/start_command.rb
169
+ - lib/timr/command/status_command.rb
170
+ - lib/timr/command/stop_command.rb
171
+ - lib/timr/command/task_command.rb
172
+ - lib/timr/command/track_command.rb
173
+ - lib/timr/command/version_command.rb
174
+ - lib/timr/duration.rb
175
+ - lib/timr/exception/timr_error.rb
176
+ - lib/timr/ext/time.rb
177
+ - lib/timr/helper/datetime_helper.rb
178
+ - lib/timr/helper/terminal_helper.rb
179
+ - lib/timr/helper/translation_helper.rb
180
+ - lib/timr/model/basic_model.rb
181
+ - lib/timr/model/config.rb
182
+ - lib/timr/model/foreign_id_db.rb
183
+ - lib/timr/model/stack.rb
184
+ - lib/timr/model/task.rb
185
+ - lib/timr/model/track.rb
186
+ - lib/timr/progressbar.rb
187
+ - lib/timr/simple_opt_parser.rb
188
+ - lib/timr/status.rb
189
+ - lib/timr/table.rb
87
190
  - lib/timr/timr.rb
88
- - lib/timr/track.rb
89
191
  - lib/timr/version.rb
90
- - lib/timr/window.rb
91
- - lib/timr/window_help.rb
92
- - lib/timr/window_tasks.rb
93
- - lib/timr/window_test.rb
94
- - lib/timr/window_timeline.rb
95
- - tests/tc_stack.rb
96
- - tests/tc_task.rb
97
- - tests/tc_track.rb
98
- - tests/tc_window.rb
99
- - tests/ts_all.rb
192
+ - man/.gitignore
193
+ - man/_footer
194
+ - man/timr-continue.1
195
+ - man/timr-continue.1.ronn
196
+ - man/timr-ftime.7
197
+ - man/timr-ftime.7.ronn
198
+ - man/timr-log.1
199
+ - man/timr-log.1.ronn
200
+ - man/timr-pause.1
201
+ - man/timr-pause.1.ronn
202
+ - man/timr-pop.1
203
+ - man/timr-pop.1.ronn
204
+ - man/timr-push.1
205
+ - man/timr-push.1.ronn
206
+ - man/timr-report.1
207
+ - man/timr-report.1.ronn
208
+ - man/timr-start.1
209
+ - man/timr-start.1.ronn
210
+ - man/timr-status.1
211
+ - man/timr-status.1.ronn
212
+ - man/timr-stop.1
213
+ - man/timr-stop.1.ronn
214
+ - man/timr-task.1
215
+ - man/timr-task.1.ronn
216
+ - man/timr-track.1
217
+ - man/timr-track.1.ronn
218
+ - man/timr.1
219
+ - man/timr.1.ronn
100
220
  - timr.gemspec
101
221
  - timr.sublime-project
102
222
  homepage: https://github.com/TheFox/timr
103
223
  licenses:
104
224
  - GPL-3.0
105
225
  metadata: {}
106
- post_install_message:
226
+ post_install_message: See 'timr --help' for more details.
107
227
  rdoc_options: []
108
228
  require_paths:
109
229
  - lib
@@ -119,9 +239,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
239
  version: '0'
120
240
  requirements: []
121
241
  rubyforge_project:
122
- rubygems_version: 2.4.7
242
+ rubygems_version: 2.6.11
123
243
  signing_key:
124
244
  specification_version: 4
125
245
  summary: Timr
126
246
  test_files: []
127
- has_rdoc: