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.
- checksums.yaml +4 -4
- data/.ackrc +9 -0
- data/.editorconfig +1 -0
- data/.env.example +7 -0
- data/.github/CONTRIBUTING.md +32 -0
- data/.github/ISSUE_TEMPLATE.md +13 -0
- data/.gitignore +8 -2
- data/.rdoc_options +21 -0
- data/.travis.yml +10 -7
- data/Gemfile +8 -0
- data/README.md +216 -3
- data/bin/.gitignore +2 -0
- data/bin/README.md +17 -0
- data/bin/build.sh +14 -0
- data/bin/build_api.sh +14 -0
- data/bin/build_coverage.sh +23 -0
- data/bin/build_info.sh +27 -0
- data/bin/build_man.sh +41 -0
- data/bin/clean.sh +14 -0
- data/bin/dev_setup.sh +19 -0
- data/bin/install.sh +49 -0
- data/bin/publish +38 -0
- data/bin/release.sh +35 -0
- data/bin/test.sh +19 -0
- data/bin/timr +20 -40
- data/bin/timr_bash_completion.sh +337 -0
- data/bin/uninstall.sh +24 -0
- data/lib/timr.rb +36 -8
- data/lib/timr/command/basic_command.rb +170 -0
- data/lib/timr/command/continue_command.rb +86 -0
- data/lib/timr/command/help_command.rb +137 -0
- data/lib/timr/command/log_command.rb +297 -0
- data/lib/timr/command/pause_command.rb +89 -0
- data/lib/timr/command/pop_command.rb +176 -0
- data/lib/timr/command/push_command.rb +141 -0
- data/lib/timr/command/report_command.rb +689 -0
- data/lib/timr/command/start_command.rb +172 -0
- data/lib/timr/command/status_command.rb +198 -0
- data/lib/timr/command/stop_command.rb +127 -0
- data/lib/timr/command/task_command.rb +318 -0
- data/lib/timr/command/track_command.rb +381 -0
- data/lib/timr/command/version_command.rb +18 -0
- data/lib/timr/duration.rb +159 -0
- data/lib/timr/exception/timr_error.rb +113 -0
- data/lib/timr/ext/time.rb +12 -0
- data/lib/timr/helper/datetime_helper.rb +128 -0
- data/lib/timr/helper/terminal_helper.rb +58 -0
- data/lib/timr/helper/translation_helper.rb +45 -0
- data/lib/timr/model/basic_model.rb +287 -0
- data/lib/timr/model/config.rb +48 -0
- data/lib/timr/model/foreign_id_db.rb +84 -0
- data/lib/timr/model/stack.rb +161 -0
- data/lib/timr/model/task.rb +1039 -0
- data/lib/timr/model/track.rb +589 -0
- data/lib/timr/progressbar.rb +41 -0
- data/lib/timr/simple_opt_parser.rb +230 -0
- data/lib/timr/status.rb +70 -0
- data/lib/timr/table.rb +88 -0
- data/lib/timr/timr.rb +500 -558
- data/lib/timr/version.rb +4 -15
- data/man/.gitignore +2 -0
- data/man/_footer +3 -0
- data/man/timr-continue.1 +48 -0
- data/man/timr-continue.1.ronn +39 -0
- data/man/timr-ftime.7 +77 -0
- data/man/timr-ftime.7.ronn +57 -0
- data/man/timr-log.1 +109 -0
- data/man/timr-log.1.ronn +87 -0
- data/man/timr-pause.1 +56 -0
- data/man/timr-pause.1.ronn +45 -0
- data/man/timr-pop.1 +66 -0
- data/man/timr-pop.1.ronn +53 -0
- data/man/timr-push.1 +25 -0
- data/man/timr-push.1.ronn +20 -0
- data/man/timr-report.1 +228 -0
- data/man/timr-report.1.ronn +193 -0
- data/man/timr-start.1 +100 -0
- data/man/timr-start.1.ronn +82 -0
- data/man/timr-status.1 +53 -0
- data/man/timr-status.1.ronn +42 -0
- data/man/timr-stop.1 +75 -0
- data/man/timr-stop.1.ronn +60 -0
- data/man/timr-task.1 +147 -0
- data/man/timr-task.1.ronn +115 -0
- data/man/timr-track.1 +109 -0
- data/man/timr-track.1.ronn +89 -0
- data/man/timr.1 +119 -0
- data/man/timr.1.ronn +68 -0
- data/timr.gemspec +18 -3
- data/timr.sublime-project +20 -1
- metadata +142 -23
- data/Makefile +0 -12
- data/Makefile.common +0 -56
- data/lib/timr/stack.rb +0 -81
- data/lib/timr/task.rb +0 -258
- data/lib/timr/track.rb +0 -167
- data/lib/timr/window.rb +0 -259
- data/lib/timr/window_help.rb +0 -41
- data/lib/timr/window_tasks.rb +0 -30
- data/lib/timr/window_test.rb +0 -20
- data/lib/timr/window_timeline.rb +0 -33
- data/tests/tc_stack.rb +0 -121
- data/tests/tc_task.rb +0 -190
- data/tests/tc_track.rb +0 -144
- data/tests/tc_window.rb +0 -428
- 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.
|
29
|
-
spec.
|
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.
|
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.
|
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:
|
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:
|
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: :
|
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:
|
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/
|
86
|
-
- lib/timr/
|
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
|
-
-
|
91
|
-
-
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
95
|
-
-
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
99
|
-
-
|
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.
|
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:
|