fugit 1.3.6 → 1.3.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90b61604e15e2cb24d4fb124306affea15a644c2591fc3a49649981616351d66
4
- data.tar.gz: 235eec423691346077fd9cfdaed895e28843ecf6681b5aa00a83cfcf9ca711a3
3
+ metadata.gz: d3e29ff88eb9d7ce1e5214af33683f577967b86ded3ee9f90be8c628fa982e40
4
+ data.tar.gz: 7adb64aaee08b7c354a3e619eda0edb96696ad4fd1d19d39c06e9a9768d058b7
5
5
  SHA512:
6
- metadata.gz: 1fd5abf6871b1cb60220bf7d6089be6bff48dfae80a05db6d031def126275940d50cbc5dfcaad493f2b6d327b66162c2a44329966459bfb3d9d5b912e3b7e68c
7
- data.tar.gz: '08a846fcce60834f8f0c289e14317249123f1f4028c478953ed04f759e633080c4d843f55c56fb973a104e1b44bbbbc92eecc978a954d7b0b317d7b23b82611b'
6
+ metadata.gz: db82aa99da670c23ba90424e015afcc8e0b5fff419d62806439bd94f171b8e0df18bbf0d3531343e814d2f9a1709a577f91f0d12024be3654df0f73922a255d5
7
+ data.tar.gz: 5bd2ae16ad1e244a6a4f26f24ba8f5291c0e1ee3271b5ccbe86c1dcd3131a383731829c838826f8dbc94ecd6e14fa6d918576a3e2347882fb635e50c8c9c3ce4
@@ -2,6 +2,11 @@
2
2
  # CHANGELOG.md
3
3
 
4
4
 
5
+ ## fugit 1.3.7 released 2020-08-05
6
+
7
+ * Parse 'every 12 hours at minute 50', gh-41
8
+
9
+
5
10
  ## fugit 1.3.6 released 2020-06-01
6
11
 
7
12
  * Introduce new nat syntaxed, gh-38
data/CREDITS.md CHANGED
@@ -1,6 +1,7 @@
1
1
 
2
2
  # fugit credits
3
3
 
4
+ * Jérôme Dalbert https://github.com/jeromedalbert every 12h at min 50, gh-41
4
5
  * Danny Ben Shitrit https://github.com/DannyBen nat variants, gh-38
5
6
  * Dominik Sander https://github.com/dsander #rough_frequency 0, gh-36
6
7
  * Milovan Zogovic https://github.com/assembler Cron#match? vs TZ, gh-31
data/README.md CHANGED
@@ -9,7 +9,7 @@ Time tools for [flor](https://github.com/floraison/flor) and the floraison group
9
9
 
10
10
  It uses [et-orbi](https://github.com/floraison/et-orbi) to represent time instances and [raabro](https://github.com/floraison/raabro) as a basis for its parsers.
11
11
 
12
- Fugit is a core dependency of [rufus-scheduler](https://github.com/jmettraux/rufus-scheduler) 3.5.x.
12
+ Fugit is a core dependency of [rufus-scheduler](https://github.com/jmettraux/rufus-scheduler) >= 3.5.
13
13
 
14
14
 
15
15
  ## Related projects
@@ -1,7 +1,7 @@
1
1
 
2
2
  module Fugit
3
3
 
4
- VERSION = '1.3.6'
4
+ VERSION = '1.3.7'
5
5
  end
6
6
 
7
7
  require 'time'
@@ -96,10 +96,14 @@ module Fugit
96
96
  when 's', 'sec', 'second', 'seconds'
97
97
  h[:sec] = eone(e)
98
98
  when 'm', 'min', 'mins', 'minute', 'minutes'
99
- #(h[:hms] ||= []) << [ '*', eone(e) ]
100
99
  h[:hms] ||= [ [ '*', eone(e) ] ]
101
100
  when 'h', 'hour', 'hours'
102
- h[:hms] ||= [ [ eone(e), 0 ] ]
101
+ hms = h[:hms]
102
+ if hms && hms.size == 1 && hms.first.first == '*'
103
+ hms.first[0] = eone(e)
104
+ elsif ! hms
105
+ h[:hms] = [ [ eone(e), 0 ] ]
106
+ end
103
107
  when 'd', 'day', 'days'
104
108
  h[:dom] = "*/#{e1}" if e1 > 1
105
109
  h[:hms] ||= [ [ 0, 0 ] ]
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.6
4
+ version: 1.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Mettraux
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-01 00:00:00.000000000 Z
11
+ date: 2020-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: raabro
@@ -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.0.3
120
+ rubygems_version: 3.1.2
121
121
  signing_key:
122
122
  specification_version: 4
123
123
  summary: time tools for flor