fugit 1.3.8 → 1.4.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of fugit might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +29 -0
- data/CREDITS.md +5 -0
- data/LICENSE.txt +1 -1
- data/README.md +25 -5
- data/fugit.gemspec +2 -2
- data/lib/fugit.rb +2 -1
- data/lib/fugit/at.rb +1 -0
- data/lib/fugit/cron.rb +37 -25
- data/lib/fugit/duration.rb +7 -7
- data/lib/fugit/misc.rb +4 -0
- data/lib/fugit/nat.rb +504 -355
- data/lib/fugit/parse.rb +1 -0
- metadata +11 -11
data/lib/fugit/parse.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fugit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3
|
4
|
+
version: 1.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Mettraux
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: raabro
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.4'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.4'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: et-orbi
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -93,15 +93,15 @@ files:
|
|
93
93
|
- lib/fugit/misc.rb
|
94
94
|
- lib/fugit/nat.rb
|
95
95
|
- lib/fugit/parse.rb
|
96
|
-
homepage:
|
96
|
+
homepage: https://github.com/floraison/fugit
|
97
97
|
licenses:
|
98
98
|
- MIT
|
99
99
|
metadata:
|
100
|
-
changelog_uri:
|
101
|
-
documentation_uri:
|
102
|
-
bug_tracker_uri:
|
103
|
-
homepage_uri:
|
104
|
-
source_code_uri:
|
100
|
+
changelog_uri: https://github.com/floraison/fugit/blob/master/CHANGELOG.md
|
101
|
+
documentation_uri: https://github.com/floraison/fugit
|
102
|
+
bug_tracker_uri: https://github.com/floraison/fugit/issues
|
103
|
+
homepage_uri: https://github.com/floraison/fugit
|
104
|
+
source_code_uri: https://github.com/floraison/fugit
|
105
105
|
post_install_message:
|
106
106
|
rdoc_options: []
|
107
107
|
require_paths:
|
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
117
117
|
- !ruby/object:Gem::Version
|
118
118
|
version: '0'
|
119
119
|
requirements: []
|
120
|
-
rubygems_version: 3.
|
120
|
+
rubygems_version: 3.0.3
|
121
121
|
signing_key:
|
122
122
|
specification_version: 4
|
123
123
|
summary: time tools for flor
|