logtime 0.0.2 → 0.0.3
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
- checksums.yaml.gz.sig +0 -0
- data/README.md +32 -0
- data/VERSION +1 -1
- data/lib/commands/version.rb +1 -1
- data/logtime.gemspec +20 -11
- data.tar.gz.sig +0 -0
- metadata +19 -18
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 77ac03824d4a2dbe1375dd8e56f22f2af21eb696
|
4
|
+
data.tar.gz: 7f501f03833e8df2e86726f57d185294dabec9f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d47a4be6bd4297fc27b24c658cdd21a365e8e4e6023527368009a7b14c74c625126dc168bfa64a70bcebd02a266ad19d3550f6693be14edb3fa017e0ea99588
|
7
|
+
data.tar.gz: 317788fe8cc68ff84d519f0c658701830a4658930d47a3c3b616b88a4613777971ea916c424aef477dd24d8da10293fb612a84fae633bd9440159fdcc4886b1d
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/README.md
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
Logtime
|
2
|
+
=======
|
3
|
+
|
4
|
+
Log your time. Get better at time estimation with statistics.
|
5
|
+
|
6
|
+
## Install
|
7
|
+
|
8
|
+
`gem install logtime`
|
9
|
+
|
10
|
+
## Database
|
11
|
+
|
12
|
+
The first time you run Logtime, it will take a few seconds to setup and save a new database.
|
13
|
+
|
14
|
+
By default, Logtime saves a sqlite database file to `~/.logtime/database.db`.
|
15
|
+
|
16
|
+
## Getting help
|
17
|
+
|
18
|
+
`logtime help` will show all commands, and `logtime help command` will tell you more about the specified command.
|
19
|
+
|
20
|
+
`logtime add logname` **Add log**
|
21
|
+
|
22
|
+
`logtime add project --start false` **Do not start on add**
|
23
|
+
|
24
|
+
`logtime add 'house 5b' --tag construction,work` **Use tags**
|
25
|
+
|
26
|
+
`logtime add 'new design' --estimate '2 hours and 25 minutes'` **Provide estimates**
|
27
|
+
|
28
|
+
`logtime start name` **start**
|
29
|
+
|
30
|
+
`logtime stop name` **stop**
|
31
|
+
|
32
|
+
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.3
|
data/lib/commands/version.rb
CHANGED
data/logtime.gemspec
CHANGED
@@ -1,23 +1,32 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
|
-
s.name = 'logtime'
|
3
2
|
s.date = '2015-06-03'
|
4
3
|
s.version = `cat VERSION`.strip
|
5
|
-
s.
|
4
|
+
s.license = 'MIT'
|
5
|
+
s.name = 'logtime'
|
6
|
+
s.summary = 'Log your time'
|
7
|
+
s.email = 'sam@samwhat.com'
|
8
|
+
s.authors = ['Paperback']
|
9
|
+
s.homepage = 'https://github.com/Paperback/Logtime.git'
|
6
10
|
s.description = <<-EOF
|
7
11
|
Tag, record and estimate your time.
|
8
12
|
Get better at time estimation with statistics.
|
9
13
|
EOF
|
10
|
-
|
11
|
-
|
12
|
-
s.
|
14
|
+
|
15
|
+
# ruby
|
16
|
+
s.platform = Gem::Platform::RUBY
|
17
|
+
s.required_ruby_version = '>= 1.9.2'
|
18
|
+
|
19
|
+
# files
|
13
20
|
s.files = `git ls-files`.split($RS)
|
14
21
|
s.executables = s.files.grep(/^bin\//) { |f| File.basename(f) }
|
15
|
-
|
16
|
-
|
17
|
-
s.add_runtime_dependency "thor", ["= 0.19.1"]
|
18
|
-
s.add_runtime_dependency "activerecord", ["= 4.1.6"]
|
19
|
-
s.add_runtime_dependency "sqlite3", ["= 1.3.9"]
|
20
|
-
s.add_runtime_dependency "chronic_duration", ["= 0.10.6"]
|
22
|
+
|
23
|
+
# signed releases
|
21
24
|
s.cert_chain = ['certs/paperback.pem']
|
22
25
|
s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
|
26
|
+
|
27
|
+
# runtime dependencies
|
28
|
+
s.add_runtime_dependency "thor", ["~> 0.19"]
|
29
|
+
s.add_runtime_dependency "activerecord", ["~> 4.1"]
|
30
|
+
s.add_runtime_dependency "sqlite3", ["~> 1.3"]
|
31
|
+
s.add_runtime_dependency "chronic_duration", ["~> 0.10"]
|
23
32
|
end
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logtime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paperback
|
@@ -36,58 +36,58 @@ dependencies:
|
|
36
36
|
name: thor
|
37
37
|
requirement: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
|
-
- -
|
39
|
+
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 0.19
|
41
|
+
version: '0.19'
|
42
42
|
type: :runtime
|
43
43
|
prerelease: false
|
44
44
|
version_requirements: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- -
|
46
|
+
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 0.19
|
48
|
+
version: '0.19'
|
49
49
|
- !ruby/object:Gem::Dependency
|
50
50
|
name: activerecord
|
51
51
|
requirement: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- -
|
53
|
+
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 4.1
|
55
|
+
version: '4.1'
|
56
56
|
type: :runtime
|
57
57
|
prerelease: false
|
58
58
|
version_requirements: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
|
-
- -
|
60
|
+
- - "~>"
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 4.1
|
62
|
+
version: '4.1'
|
63
63
|
- !ruby/object:Gem::Dependency
|
64
64
|
name: sqlite3
|
65
65
|
requirement: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- -
|
67
|
+
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 1.3
|
69
|
+
version: '1.3'
|
70
70
|
type: :runtime
|
71
71
|
prerelease: false
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
|
-
- -
|
74
|
+
- - "~>"
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version: 1.3
|
76
|
+
version: '1.3'
|
77
77
|
- !ruby/object:Gem::Dependency
|
78
78
|
name: chronic_duration
|
79
79
|
requirement: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
|
-
- -
|
81
|
+
- - "~>"
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: 0.10
|
83
|
+
version: '0.10'
|
84
84
|
type: :runtime
|
85
85
|
prerelease: false
|
86
86
|
version_requirements: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
|
-
- -
|
88
|
+
- - "~>"
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version: 0.10
|
90
|
+
version: '0.10'
|
91
91
|
description: |2
|
92
92
|
Tag, record and estimate your time.
|
93
93
|
Get better at time estimation with statistics.
|
@@ -101,6 +101,7 @@ files:
|
|
101
101
|
- Gemfile
|
102
102
|
- Gemfile.lock
|
103
103
|
- LICENSE.md
|
104
|
+
- README.md
|
104
105
|
- VERSION
|
105
106
|
- bin/logtime
|
106
107
|
- certs/paperback.pem
|
@@ -152,7 +153,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
152
153
|
requirements:
|
153
154
|
- - ">="
|
154
155
|
- !ruby/object:Gem::Version
|
155
|
-
version:
|
156
|
+
version: 1.9.2
|
156
157
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
157
158
|
requirements:
|
158
159
|
- - ">="
|
metadata.gz.sig
CHANGED
Binary file
|