dtg 3.0.2 → 4.0.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/Gemfile +49 -0
- data/Rakefile +4 -27
- data/dtg.gemspec +47 -0
- data/lib/dtg.rb +10 -30
- data/lib/dtg/active_support/time_with_zone_ext.rb +3 -2
- data/lib/dtg/date_time_ext.rb +5 -2
- data/lib/dtg/date_time_group.rb +31 -0
- data/lib/dtg/time_ext.rb +3 -2
- data/lib/dtg/version.rb +1 -1
- data/spec/lib/dtg/active_support/time_with_zone_ext_spec.rb +164 -0
- data/spec/lib/dtg/date_time_ext_spec.rb +163 -0
- data/spec/lib/dtg/date_time_group_spec.rb +30 -0
- data/spec/lib/dtg/time_ext_spec.rb +163 -0
- data/spec/lib/dtg/zones_spec.rb +109 -0
- data/spec/lib/dtg_spec.rb +18 -0
- data/spec/spec_helper.rb +109 -0
- metadata +21 -50
- data/MIT-LICENSE +0 -20
- data/README.md +0 -183
- data/lib/dtg/railtie.rb +0 -5
- data/lib/tasks/dtg_tasks.rake +0 -4
data/MIT-LICENSE
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
Copyright 2019 SolarisFlare
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
-
a copy of this software and associated documentation files (the
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
10
|
-
|
11
|
-
The above copyright notice and this permission notice shall be
|
12
|
-
included in all copies or substantial portions of the Software.
|
13
|
-
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
DELETED
@@ -1,183 +0,0 @@
|
|
1
|
-
[](https://travis-ci.org/SolarisFlare/dtg)
|
2
|
-
[](https://coveralls.io/github/SolarisFlare/dtg?branch=master)
|
3
|
-
[](https://codeclimate.com/github/SolarisFlare/dtg/maintainability)
|
4
|
-
[](https://codeclimate.com/github/SolarisFlare/dtg/test_coverage)
|
5
|
-
[](http://inch-ci.org/github/SolarisFlare/dtg)
|
6
|
-
|
7
|
-
[](https://badge.fury.io/rb/dtg)
|
8
|
-
[](https://rubygems.org/gems/dtg)
|
9
|
-
[](https://rubygems.org/gems/dtg)
|
10
|
-
[](https://rubygems.org/dtg)
|
11
|
-
[](https://rubydoc.info/github/SolarisFlare/dtg/)
|
12
|
-
|
13
|
-
[](https://raw.githubusercontent.com/SolarisFlare/dtg/master/LICENSE)
|
14
|
-
[](https://badge.fury.io/gh/SolarisFlare%2Fdtg)
|
15
|
-
[](https://github.com/SolarisFlare/dtg/issues)
|
16
|
-
[](https://github.com/SolarisFlare/dtg/issues)
|
17
|
-
|
18
|
-

|
19
|
-

|
20
|
-

|
21
|
-
|
22
|
-
# Dtg
|
23
|
-
|
24
|
-
DTG is a ruby gem to convert Time objects into DTG format.
|
25
|
-
|
26
|
-
A DTG is a DateTimeGroup which is used in the military to save time. DTG are saved in the format DDHHMML MMM YY, where D is day, H is hour, L is letter, M is month, and Y is year. The Month is the 3 character representation such as JAN for January, MAY for May, DEC for December and so on. Year is only the last two digits of the year e.g. 2019 is just 19. The letter is the zone code such as W for whiskey which is HST, Z for zulu which is GMT, A-Z are the zones used.
|
27
|
-
|
28
|
-
DTG integrates natively with the DateTime, Time, and ActiveSupport::TimeWithZone classes in Ruby/Rails and is callable on all Time objects. DTG returns a visually formatted dtg converted based on knolwedge of the zone of the object and the intended zone. It is also respective of daylight savings time of your objects zone and its intended zone.
|
29
|
-
|
30
|
-
DTG is the military acronym referring to what is also called nautical or maritime time zones. These zones are mapped across the world from A-Z not including J as J references the local timezone of yourself.
|
31
|
-
|
32
|
-
## Table of Contents
|
33
|
-
|
34
|
-
1. [DTG](#dtg)
|
35
|
-
2. [Table of Contents](#table-of-contents)
|
36
|
-
3. [Usage](#usage)
|
37
|
-
1. [DTG Zones](#dtg-zones)
|
38
|
-
2. [DTG Zone Map](#dtg-zone-map)
|
39
|
-
4. [Installation](#installation)
|
40
|
-
5. [Testing](#testing)
|
41
|
-
6. [Problems](#problems)
|
42
|
-
7. [Contributing](#contributing)
|
43
|
-
8. [License](#license)
|
44
|
-
|
45
|
-
## Usage
|
46
|
-
|
47
|
-
DTG implements the method to_dtg into the Time class and is fully compatible with all Time objects(DateTime, Time, and TimeWithZone have been tested, custom objects should also function the same as long as their properties emulate that of the former).
|
48
|
-
|
49
|
-
To use:
|
50
|
-
|
51
|
-
```ruby
|
52
|
-
TIMEOBJECT.to_dtg
|
53
|
-
```
|
54
|
-
|
55
|
-
and it will return the time object as a string in the zulu timezone in dtg format.
|
56
|
-
|
57
|
-
For other DTG formats:
|
58
|
-
|
59
|
-
```ruby
|
60
|
-
TIMEOBJECT.to_dtg(:zone)
|
61
|
-
```
|
62
|
-
|
63
|
-
where zone is any single letter symbol A-Z, capital or lower case and it will return the time object as a string in the zone format.
|
64
|
-
|
65
|
-
### DTG Zones
|
66
|
-
|
67
|
-
- A: Alpha Time: UTC +01:00 (Paris, France)
|
68
|
-
- B: Bravo Time: UTC +02:00 (Athens, Greece)
|
69
|
-
- C: Charlie Time: UTC +03:00 (Moscow, Russia)
|
70
|
-
- D: Delta Time: UTC +04:00 (Kabul, Afghanistan)
|
71
|
-
- E: Echo Time: UTC +05:00 (New Delhi, India)
|
72
|
-
- F: Foxtrot Time: UTC +06:00 (Dhanka, Bangladesh)
|
73
|
-
- G: Golf Time: UTC +07:00 (Bangkok, Thailand)
|
74
|
-
- H: Hotel Time: UTC +08:00 (Beijing, China)
|
75
|
-
- I: India Time: UTC +09:00 (Tokyo, Japan)
|
76
|
-
- J: Juliet Time: (Local Time Zone)
|
77
|
-
- K: Kilo Time: UTC +10:00 (Sydney, Australia)
|
78
|
-
- L: Lima Time: UTC +11:00 (Honiara, Solomon Islands)
|
79
|
-
- M: Mike Time: UTC +12:00 (Wellington, New Zealand)
|
80
|
-
- N: November Time: UTC -01:00 (Azores)
|
81
|
-
- O: Oscar Time: UTC -02:00 (Gothab, Greenland)
|
82
|
-
- P: Papa Time: UTC -03:00 (Buenos Aires, Argentina)
|
83
|
-
- Q: Quebec Time: UTC -04:00 (Halifax, Nova Scotia)
|
84
|
-
- R: Romeo Time: UTC -05:00 (New York, NY United States)
|
85
|
-
- S: Sierra Time: UTC -06:00 (Dallas, TX United States)
|
86
|
-
- T: Tango Time: UTC -07:00 (Denver, CO United States)
|
87
|
-
- U: Uniform Time: UTC -08:00 (Los Angeles, CA United States)
|
88
|
-
- V: Victor Time: UTC -09:00 (Juneau, AK United States)
|
89
|
-
- W: Whiskey Time: UTC -10:00 (Honolulu, HI United States)
|
90
|
-
- X: X-Ray Time: UTC -11:00 (Nome, AK United States)
|
91
|
-
- Y: Yankee Time: UTC -12:00 (Suva, Fiji)
|
92
|
-
- Z: Zulu Time: UTC +-00:00 (Greenwich, England)
|
93
|
-
|
94
|
-
### DTG Zone Map
|
95
|
-
|
96
|
-

|
97
|
-
|
98
|
-
## Installation
|
99
|
-
|
100
|
-
Add this line to your application's Gemfile:
|
101
|
-
|
102
|
-
```ruby
|
103
|
-
gem 'dtg'
|
104
|
-
```
|
105
|
-
|
106
|
-
And then execute:
|
107
|
-
```bash
|
108
|
-
$ bundle
|
109
|
-
```
|
110
|
-
|
111
|
-
Or install it yourself as:
|
112
|
-
```bash
|
113
|
-
$ gem install dtg
|
114
|
-
```
|
115
|
-
|
116
|
-
## Testing
|
117
|
-
|
118
|
-
If you would like to test this gem before adding it to your project to see it's functionality, follow these steps:
|
119
|
-
|
120
|
-
1. Clone the repository
|
121
|
-
|
122
|
-
```sh
|
123
|
-
git clone https://github.com/SolarisFlare/dtg
|
124
|
-
```
|
125
|
-
|
126
|
-
2. cd into the test/dummy directory
|
127
|
-
|
128
|
-
3. Start the rails console
|
129
|
-
|
130
|
-
```sh
|
131
|
-
rails console
|
132
|
-
```
|
133
|
-
|
134
|
-
OR
|
135
|
-
|
136
|
-
```sh
|
137
|
-
rails c
|
138
|
-
```
|
139
|
-
|
140
|
-
4. Test away
|
141
|
-
|
142
|
-
```ruby
|
143
|
-
#<Tested in irb console(default rails), also works in Pry console>
|
144
|
-
|
145
|
-
y = Time.zone.now
|
146
|
-
y.dtg
|
147
|
-
y = Time.zone.now.to_dtg(:j)
|
148
|
-
y
|
149
|
-
|
150
|
-
x = Time.now
|
151
|
-
x.dtg
|
152
|
-
x.to_dtg(:j)
|
153
|
-
x.to_dtg(:J)
|
154
|
-
x.to_dtg
|
155
|
-
x.to_dtg(:z)
|
156
|
-
x.to_dtg(:Z)
|
157
|
-
x.to_dtg(:W)
|
158
|
-
x.to_dtg(:m)
|
159
|
-
|
160
|
-
z = DateTime.now
|
161
|
-
z.dtg
|
162
|
-
z.to_dtg
|
163
|
-
z.convert :w
|
164
|
-
z.to_dtg :c
|
165
|
-
|
166
|
-
Time.now.to_dtg(:a)
|
167
|
-
DateTime.now.to_dtg :Q
|
168
|
-
Time.zone.now.to_dtg L.to_sym
|
169
|
-
```
|
170
|
-
|
171
|
-
> Note: The .dtg method will return a string naming the type of the object you called it on and can therefore be used to verify if the gem has successfully natively integrated with Ruby/Rails(should fail if not). I included this for testing purposes to check that the right modules were being loaded with DTG and have run into no load failures but for peace of mind I left it in in case you want to see for yourself.
|
172
|
-
|
173
|
-
## Problems
|
174
|
-
|
175
|
-
DTG relies upon time objects that have timezone set either as Time.zone or as the default offset recorded. I recommend setting the application timezone in the application.rb configuration file so that dtg works automatically on any generated time objects otherwise it will convert all time objects from UTC +00:00 which is the rails default zone (Etc/UTC) and therefore can provide unintended results. TimeWithZone is different and therefore is a Time with offset and with zone. Therefore without data loss, you can convert from TimeWithZone to DateTime or Time and maintain the same time, however, you may lose the zone code but the offset will be kept and the zone code can be recovered based on this offset but certain zones that follow daylight savings time may lose their savings-ness and will no longer spring forward or backward if converted.
|
176
|
-
|
177
|
-
## Contributing
|
178
|
-
|
179
|
-
If you want to contribute please let me know though either an email or you can just submit a pull request to add anything!
|
180
|
-
|
181
|
-
## License
|
182
|
-
|
183
|
-
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/lib/dtg/railtie.rb
DELETED
data/lib/tasks/dtg_tasks.rake
DELETED