et-orbi 1.2.4 → 1.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/LICENSE.txt +1 -1
- data/README.md +12 -5
- data/et-orbi.gemspec +1 -1
- data/lib/et-orbi/make.rb +13 -11
- data/lib/et-orbi/zones.rb +1 -1
- data/lib/et-orbi.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee673cb530f7c10cff490be7104ce58f7ed2aaba9824169e9598c29f136dc22c
|
4
|
+
data.tar.gz: 25f5e2700473dfd30ae472388b298a9caa1ceae2bd4ed4985f800953f453c3b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68014f7b6df2c3cb55b0ef4b7b7405db4f65ee1e583b95c13dfeb4138cd370a64eeacdd26bf519618613caf4851eea1609c148d1851207cbec1e514ec34f9e48
|
7
|
+
data.tar.gz: 2f00a51829515e0b9d49b536b2a5914aa916a9eff1ffb623b32416182220b4b635bc12216a247172aee798b4e524f3fc7bac0f5f23c903bf77f22dd39ae8d18d
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
Copyright (c) 2017-
|
2
|
+
Copyright (c) 2017-2021, John Mettraux, jmettraux+flor@gmail.com
|
3
3
|
|
4
4
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
5
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
|
2
2
|
# et-orbi
|
3
3
|
|
4
|
-
[![
|
5
|
-
[![Build status](https://ci.appveyor.com/api/projects/status/6tbo9lk9qdor8ipl?svg=true)](https://ci.appveyor.com/project/jmettraux/et-orbi)
|
4
|
+
[![tests](https://github.com/floraison/et-orbi/workflows/test/badge.svg)](https://github.com/floraison/et-orbi/actions)
|
6
5
|
[![Gem Version](https://badge.fury.io/rb/et-orbi.svg)](http://badge.fury.io/rb/et-orbi)
|
7
6
|
[![Join the chat at https://gitter.im/floraison/fugit](https://badges.gitter.im/floraison/fugit.svg)](https://gitter.im/floraison/fugit?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
8
7
|
|
@@ -16,6 +15,8 @@ require 'et-orbi'
|
|
16
15
|
|
17
16
|
EtOrbi.now
|
18
17
|
# => #<EtOrbi::EoTime:0x007f94d94 ...>
|
18
|
+
EtOrbi.now('Asia/Singapore')
|
19
|
+
# => #<EtOrbi::EoTime:0x39c96e48 @time=nil, @zone=#<TZInfo::DataTimezone: Asia/Singapore>...>
|
19
20
|
EtOrbi.parse('2017-12-13 13:00:00 America/Jamaica')
|
20
21
|
# => #<EtOrbi::EoTime:0x007f94d90 @zone=#<TZInfo::DataTimezone: America/Jamaica>...>
|
21
22
|
EtOrbi.make_time(Time.now)
|
@@ -75,7 +76,10 @@ By default, et-orbi relies on [Chronic](https://github.com/mojombo/chronic) to p
|
|
75
76
|
|
76
77
|
```ruby
|
77
78
|
EtOrbi.parse('tomorrow')
|
78
|
-
# => #<EtOrbi::EoTime:0x007fbc6aa8a560
|
79
|
+
# => #<EtOrbi::EoTime:0x007fbc6aa8a560
|
80
|
+
# @seconds=1575687600.0,
|
81
|
+
# @zone=#<TZInfo::TimezoneProxy: Asia/Tokyo>,
|
82
|
+
# @time=nil>
|
79
83
|
EtOrbi.parse('tomorrow').to_s
|
80
84
|
# => "2019-12-07 12:00:00 +0900"
|
81
85
|
```
|
@@ -90,10 +94,13 @@ EtOrbi.parse(Chronic.parse('tomorrow').to_s).to_s
|
|
90
94
|
# => "2019-12-07 12:00:00 +0900"
|
91
95
|
```
|
92
96
|
|
93
|
-
If one has Chronic present in
|
97
|
+
If one has Chronic present in their project but doesn't want it to interfere with et-orbi, it can be disabled at `parse` call:
|
94
98
|
```ruby
|
95
99
|
EtOrbi.parse('tomorrow')
|
96
|
-
# => #<EtOrbi::EoTime:0x007ffb5b2a2390
|
100
|
+
# => #<EtOrbi::EoTime:0x007ffb5b2a2390
|
101
|
+
# @seconds=1575687600.0,
|
102
|
+
# @zone=#<TZInfo::TimezoneProxy: Asia/Tokyo>,
|
103
|
+
# @time=nil>
|
97
104
|
EtOrbi.parse('tomorrow', enable_chronic: false)
|
98
105
|
# ArgumentError: No time information in "tomorrow"
|
99
106
|
# from /home/jmettraux/w/et-orbi/lib/et-orbi/make.rb:31:in `rescue in parse'
|
data/et-orbi.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.platform = Gem::Platform::RUBY
|
11
11
|
s.authors = [ 'John Mettraux' ]
|
12
12
|
s.email = [ 'jmettraux+flor@gmail.com' ]
|
13
|
-
s.homepage = '
|
13
|
+
s.homepage = 'https://github.com/floraison/et-orbi'
|
14
14
|
s.license = 'MIT'
|
15
15
|
s.summary = 'time with zones'
|
16
16
|
|
data/lib/et-orbi/make.rb
CHANGED
@@ -25,23 +25,25 @@ module EtOrbi
|
|
25
25
|
str = [ t.strftime('%F %T'), str_zone ].compact.join(' ')
|
26
26
|
end
|
27
27
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
#
|
36
|
-
|
28
|
+
dt =
|
29
|
+
begin
|
30
|
+
DateTime.parse(str)
|
31
|
+
rescue
|
32
|
+
fail ArgumentError, "No time information in #{str.inspect}"
|
33
|
+
end
|
34
|
+
#end if RUBY_VERSION < '1.9.0'
|
35
|
+
#end if RUBY_VERSION < '2.0.0'
|
36
|
+
#
|
37
|
+
# is necessary since Time.parse('xxx') in Ruby < 1.9 yields `now`
|
37
38
|
|
38
39
|
zone =
|
39
40
|
opts[:zone] ||
|
40
41
|
get_tzone(str_zone) ||
|
41
42
|
determine_local_tzone
|
42
43
|
|
43
|
-
local = Time.parse(str)
|
44
|
-
secs = zone.local_to_utc(local).to_f
|
44
|
+
#local = Time.parse(str)
|
45
|
+
#secs = zone.local_to_utc(local).to_f
|
46
|
+
secs = zone.local_to_utc(dt).to_time.to_f
|
45
47
|
|
46
48
|
EoTime.new(secs, zone)
|
47
49
|
end
|
data/lib/et-orbi/zones.rb
CHANGED
data/lib/et-orbi.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: et-orbi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.5
|
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-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tzinfo
|
@@ -73,15 +73,15 @@ files:
|
|
73
73
|
- lib/et-orbi/zones.rb
|
74
74
|
- lib/et_orbi.rb
|
75
75
|
- lib/etorbi.rb
|
76
|
-
homepage:
|
76
|
+
homepage: https://github.com/floraison/et-orbi
|
77
77
|
licenses:
|
78
78
|
- MIT
|
79
79
|
metadata:
|
80
|
-
changelog_uri:
|
81
|
-
documentation_uri:
|
82
|
-
bug_tracker_uri:
|
83
|
-
homepage_uri:
|
84
|
-
source_code_uri:
|
80
|
+
changelog_uri: https://github.com/floraison/et-orbi/blob/master/CHANGELOG.md
|
81
|
+
documentation_uri: https://github.com/floraison/et-orbi
|
82
|
+
bug_tracker_uri: https://github.com/floraison/et-orbi/issues
|
83
|
+
homepage_uri: https://github.com/floraison/et-orbi
|
84
|
+
source_code_uri: https://github.com/floraison/et-orbi
|
85
85
|
post_install_message:
|
86
86
|
rdoc_options: []
|
87
87
|
require_paths:
|
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
97
|
- !ruby/object:Gem::Version
|
98
98
|
version: '0'
|
99
99
|
requirements: []
|
100
|
-
rubygems_version: 3.
|
100
|
+
rubygems_version: 3.1.2
|
101
101
|
signing_key:
|
102
102
|
specification_version: 4
|
103
103
|
summary: time with zones
|