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.
@@ -0,0 +1,30 @@
1
+ require "spec_helper"
2
+
3
+ RSpec.describe DateTimeGroup do
4
+ describe "#dtg" do
5
+ context "when the object is a DateTime" do
6
+ let(:dummy) { DateTime.new{ include described_class } }
7
+
8
+ it "returns datetime in a string" do
9
+ expect(dummy.dtg).to eq("DTG gem is natively integrated with this class: #{dummy.class}")
10
+ end
11
+ end
12
+
13
+ context "when the object is a Time" do
14
+ let(:dummy) { Time.new{ include described_class } }
15
+
16
+ it "returns time in a string" do
17
+ expect(dummy.dtg).to eq("DTG gem is natively integrated with this class: #{dummy.class}")
18
+ end
19
+ end
20
+
21
+ context "when the object is an ActiveSupport::TimeWithZone" do
22
+ # ActiveSupport::TimeWithZone.new is not allowed to instantiate empty class
23
+ let(:dummy) { Time.zone.now { include described_class } }
24
+
25
+ it "returns the ActiveSupport::TimeWithZone in a string" do
26
+ expect(dummy.dtg).to eq("DTG gem is natively integrated with this class: #{dummy.class}")
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,163 @@
1
+ require "spec_helper"
2
+
3
+ RSpec.describe Time do
4
+ let(:time) { described_class.now { include DateTimeGroup } }
5
+
6
+ describe "#to_dtg" do
7
+ context "when zone is a symbol" do
8
+ context "when symbol is lowercase" do
9
+ it "converts and formats as dtg" do
10
+ (:a..:z).to_set.delete(:j).each do |zone|
11
+ expect(time.to_dtg(zone)).to eq(time.in_time_zone(
12
+ Zones::UTC_ZONES[zone])
13
+ .strftime(
14
+ "%d%H%M#{zone.upcase.to_s} %b %y"))
15
+ end
16
+ # :j is separate because there is no local timezone identifier,
17
+ # it just gets returned and formatted
18
+ expect(time.to_dtg(:j)).to eq(time.format(:j))
19
+ end
20
+ end
21
+
22
+ context "when symbol is uppercase" do
23
+ it "converts and formats as dtg" do
24
+ (:A..:Z).to_set.delete(:J).each do |zone|
25
+ expect(time.to_dtg(zone)).to eq(time.in_time_zone(
26
+ Zones::UTC_ZONES[zone.downcase])
27
+ .strftime(
28
+ "%d%H%M#{zone.to_s} %b %y"))
29
+ end
30
+ # :J is separate because there is no local timezone identifier,
31
+ # it just gets returned and formatted
32
+ expect(time.to_dtg(:J)).to eq(time.format(:j))
33
+ end
34
+ end
35
+ end
36
+
37
+ context "when zone is a single character string" do
38
+ context "when string is lowercase" do
39
+ it "converts and formats as dtg" do
40
+ ('a'..'z').to_set.delete('j').each do |zone|
41
+ expect(time.to_dtg(zone)).to eq(time.in_time_zone(
42
+ Zones::UTC_ZONES[zone.to_sym])
43
+ .strftime(
44
+ "%d%H%M#{zone.upcase} %b %y"))
45
+ end
46
+ # 'j' is separate because there is no local timezone identifier
47
+ # it just gets returned and formatted
48
+ expect(time.to_dtg('j')).to eq(time.format(:j))
49
+ end
50
+ end
51
+
52
+ context "when string is uppercase" do
53
+ it "converts and formats as dtg" do
54
+ ('A'..'Z').to_set.delete('J').each do |zone|
55
+ expect(time.to_dtg(zone)).to eq(time.in_time_zone(
56
+ Zones::UTC_ZONES[zone.downcase.to_sym])
57
+ .strftime(
58
+ "%d%H%M#{zone} %b %y"))
59
+ end
60
+ # 'J' is separate because there is no local timezone identifier,
61
+ # it just gets returned and formatted
62
+ expect(time.to_dtg('J')).to eq(time.format(:j))
63
+ end
64
+ end
65
+ end
66
+ end
67
+
68
+ describe "#format" do
69
+ context "when zone is a symbol" do
70
+ context "when symbol is lowercase" do
71
+ it "formats to dtg standard" do
72
+ (:a..:z).each do |zone|
73
+ expect(time.format(zone)).to eq(time.strftime(
74
+ "%d%H%M#{zone.upcase.to_s} %b %y"))
75
+ end
76
+ end
77
+ end
78
+
79
+ context "when symbol is uppercase" do
80
+ it "formats to dtg standard" do
81
+ (:A..:Z).each do |zone|
82
+ expect(time.format(zone)).to eq(time.strftime(
83
+ "%d%H%M#{zone.to_s} %b %y"))
84
+ end
85
+ end
86
+ end
87
+ end
88
+
89
+ context "when zone is a single character string" do
90
+ context "when string is lowercase" do
91
+ it "formats to dtg standard" do
92
+ ('a'..'z').each do |zone|
93
+ expect(time.format(zone)).to eq(time.strftime(
94
+ "%d%H%M#{zone.upcase} %b %y"))
95
+ end
96
+ end
97
+ end
98
+
99
+ context "when string is uppercase" do
100
+ it "formats to dtg standard" do
101
+ ('A'..'Z').each do |zone|
102
+ expect(time.format(zone)).to eq(time.strftime(
103
+ "%d%H%M#{zone} %b %y"))
104
+ end
105
+ end
106
+ end
107
+ end
108
+ end
109
+
110
+ describe "#convert" do
111
+ context "when zone is a symbol" do
112
+ context "when symbol is lowercase" do
113
+ it "returns converted time to new zone" do
114
+ (:a..:z).to_set.delete(:j).each do |zone|
115
+ expect(time.convert(zone)).to eq(time.in_time_zone(
116
+ Zones::UTC_ZONES[zone]))
117
+ end
118
+ # :j is separate because there is no local timezone identifier,
119
+ # it just gets returned and formatted
120
+ expect(time.convert(:j)).to eq(time)
121
+ end
122
+ end
123
+
124
+ context "when symbol is uppercase" do
125
+ it "returns converted time to new zone" do
126
+ (:A..:Z).to_set.delete(:J).each do |zone|
127
+ expect(time.convert(zone)).to eq(time.in_time_zone(
128
+ Zones::UTC_ZONES[zone.downcase]))
129
+ end
130
+ # :J is separate because there is no local timezone identifier,
131
+ # it just gets returned and formatted
132
+ expect(time.convert(:J)).to eq(time)
133
+ end
134
+ end
135
+ end
136
+
137
+ context "when zone is a single character string" do
138
+ context "when string is lowercase" do
139
+ it "returns converted time to new zone" do
140
+ ('a'..'z').to_set.delete('j').each do |zone|
141
+ expect(time.convert(zone)).to eq(time.in_time_zone(
142
+ Zones::UTC_ZONES[zone.to_sym]))
143
+ end
144
+ # 'j' is separate because there is no local timezone identifier,
145
+ # it just gets returned and formatted
146
+ expect(time.convert('j')).to eq(time)
147
+ end
148
+ end
149
+
150
+ context "when string is uppercase" do
151
+ it "returns converted time to new zone" do
152
+ ('A'..'Z').to_set.delete('J').each do |zone|
153
+ expect(time.convert(zone)).to eq(time.in_time_zone(
154
+ Zones::UTC_ZONES[zone.downcase.to_sym]))
155
+ end
156
+ # 'J' is separate because there is no local timezone identifier,
157
+ # it just gets returned and formatted
158
+ expect(time.convert('J')).to eq(time)
159
+ end
160
+ end
161
+ end
162
+ end
163
+ end
@@ -0,0 +1,109 @@
1
+ require "spec_helper"
2
+
3
+ RSpec.describe Zones do
4
+ describe "UTC_ZONES" do
5
+ it "returns alpha time offset" do
6
+ expect(Zones::UTC_ZONES[:a]).to eq(+1)
7
+ end
8
+
9
+ it "returns bravo time offset" do
10
+ expect(Zones::UTC_ZONES[:b]).to eq(+2)
11
+ end
12
+
13
+ it "returns charlie time offset" do
14
+ expect(Zones::UTC_ZONES[:c]).to eq(+3)
15
+ end
16
+
17
+ it "returns delta time offset" do
18
+ expect(Zones::UTC_ZONES[:d]).to eq(+4)
19
+ end
20
+
21
+ it "returns echo time offset" do
22
+ expect(Zones::UTC_ZONES[:e]).to eq(+5)
23
+ end
24
+
25
+ it "returns foxtrot time offset" do
26
+ expect(Zones::UTC_ZONES[:f]).to eq(+6)
27
+ end
28
+
29
+ it "returns golf time offset" do
30
+ expect(Zones::UTC_ZONES[:g]).to eq(+7)
31
+ end
32
+
33
+ it "returns hotel time offset" do
34
+ expect(Zones::UTC_ZONES[:h]).to eq(+8)
35
+ end
36
+
37
+ it "returns india time offset" do
38
+ expect(Zones::UTC_ZONES[:i]).to eq(+9)
39
+ end
40
+
41
+ it "returns juliet time offset" do
42
+ expect(Zones::UTC_ZONES[:j]).to eq("")
43
+ end
44
+
45
+ it "returns kilo time offset" do
46
+ expect(Zones::UTC_ZONES[:k]).to eq(+10)
47
+ end
48
+
49
+ it "returns lima time offset" do
50
+ expect(Zones::UTC_ZONES[:l]).to eq(+11)
51
+ end
52
+
53
+ it "returns mike time offset" do
54
+ expect(Zones::UTC_ZONES[:m]).to eq(+12)
55
+ end
56
+
57
+ it "returns november time offset" do
58
+ expect(Zones::UTC_ZONES[:n]).to eq(-1)
59
+ end
60
+
61
+ it "returns oscar time offset" do
62
+ expect(Zones::UTC_ZONES[:o]).to eq(-2)
63
+ end
64
+
65
+ it "returns papa time offset" do
66
+ expect(Zones::UTC_ZONES[:p]).to eq(-3)
67
+ end
68
+
69
+ it "returns quebec time offset" do
70
+ expect(Zones::UTC_ZONES[:q]).to eq(-4)
71
+ end
72
+
73
+ it "returns romeo time offset" do
74
+ expect(Zones::UTC_ZONES[:r]).to eq(-5)
75
+ end
76
+
77
+ it "returns sierra time offset" do
78
+ expect(Zones::UTC_ZONES[:s]).to eq(-6)
79
+ end
80
+
81
+ it "returns tango time offset" do
82
+ expect(Zones::UTC_ZONES[:t]).to eq(-7)
83
+ end
84
+
85
+ it "returns uniform time offset" do
86
+ expect(Zones::UTC_ZONES[:u]).to eq(-8)
87
+ end
88
+
89
+ it "returns victor time offset" do
90
+ expect(Zones::UTC_ZONES[:v]).to eq(-9)
91
+ end
92
+
93
+ it "returns whiskey time offset" do
94
+ expect(Zones::UTC_ZONES[:w]).to eq(-10)
95
+ end
96
+
97
+ it "returns x-ray time offset" do
98
+ expect(Zones::UTC_ZONES[:x]).to eq(-11)
99
+ end
100
+
101
+ it "returns yankee time offset" do
102
+ expect(Zones::UTC_ZONES[:y]).to eq(-12)
103
+ end
104
+
105
+ it "returns zulu time offset" do
106
+ expect(Zones::UTC_ZONES[:z]).to eq("UTC")
107
+ end
108
+ end
109
+ end
@@ -0,0 +1,18 @@
1
+ require "spec_helper"
2
+
3
+ RSpec.describe Dtg do
4
+ it "Sets the Timezone to UTC if not already set" do
5
+ expect(Time.zone).to eq(ActiveSupport::TimeZone.new("UTC"))
6
+ end
7
+
8
+ it "does not override the timezone if set" do
9
+ Time.zone = "HST"
10
+ expect(Time.zone).to eq(ActiveSupport::TimeZone.new("HST"))
11
+ end
12
+
13
+ describe ".dtg" do
14
+ it "replies as active if gem is loaded" do
15
+ expect(described_class.dtg).to eq("DTG gem is active")
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,109 @@
1
+ # Coveralls Configuration
2
+ if ENV['TRAVIS']
3
+ # When running in Travis, report coverage stats to Coveralls.
4
+ require 'coveralls'
5
+ Coveralls.wear!
6
+ end
7
+
8
+ require 'dtg'
9
+
10
+ # This file was generated by the `rspec --init` command. Conventionally, all
11
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
12
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
13
+ # this file to always be loaded, without a need to explicitly require it in any
14
+ # files.
15
+ #
16
+ # Given that it is always loaded, you are encouraged to keep this file as
17
+ # light-weight as possible. Requiring heavyweight dependencies from this file
18
+ # will add to the boot time of your test suite on EVERY test run, even for an
19
+ # individual file that may not need all of that loaded. Instead, consider making
20
+ # a separate helper file that requires the additional dependencies and performs
21
+ # the additional setup, and require it from the spec files that actually need
22
+ # it.
23
+ #
24
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
25
+ RSpec.configure do |config|
26
+ # rspec-expectations config goes here. You can use an alternate
27
+ # assertion/expectation library such as wrong or the stdlib/minitest
28
+ # assertions if you prefer.
29
+ config.expect_with :rspec do |expectations|
30
+ # This option will default to `true` in RSpec 4. It makes the `description`
31
+ # and `failure_message` of custom matchers include text for helper methods
32
+ # defined using `chain`, e.g.:
33
+ # be_bigger_than(2).and_smaller_than(4).description
34
+ # # => "be bigger than 2 and smaller than 4"
35
+ # ...rather than:
36
+ # # => "be bigger than 2"
37
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
38
+ end
39
+
40
+ # rspec-mocks config goes here. You can use an alternate test double
41
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
42
+ config.mock_with :rspec do |mocks|
43
+ # Prevents you from mocking or stubbing a method that does not exist on
44
+ # a real object. This is generally recommended, and will default to
45
+ # `true` in RSpec 4.
46
+ mocks.verify_partial_doubles = true
47
+ end
48
+
49
+ # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
50
+ # have no way to turn it off -- the option exists only for backwards
51
+ # compatibility in RSpec 3). It causes shared context metadata to be
52
+ # inherited by the metadata hash of host groups and examples, rather than
53
+ # triggering implicit auto-inclusion in groups with matching metadata.
54
+ config.shared_context_metadata_behavior = :apply_to_host_groups
55
+
56
+ # The settings below are suggested to provide a good initial experience
57
+ # with RSpec, but feel free to customize to your heart's content.
58
+ =begin
59
+ # This allows you to limit a spec run to individual examples or groups
60
+ # you care about by tagging them with `:focus` metadata. When nothing
61
+ # is tagged with `:focus`, all examples get run. RSpec also provides
62
+ # aliases for `it`, `describe`, and `context` that include `:focus`
63
+ # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
64
+ config.filter_run_when_matching :focus
65
+
66
+ # Allows RSpec to persist some state between runs in order to support
67
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
68
+ # you configure your source control system to ignore this file.
69
+ config.example_status_persistence_file_path = "spec/examples.txt"
70
+
71
+ # Limits the available syntax to the non-monkey patched syntax that is
72
+ # recommended. For more details, see:
73
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
74
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
75
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
76
+ config.disable_monkey_patching!
77
+
78
+ # This setting enables warnings. It's recommended, but in some cases may
79
+ # be too noisy due to issues in dependencies.
80
+ config.warnings = true
81
+
82
+ # Many RSpec users commonly either run the entire suite or an individual
83
+ # file, and it's useful to allow more verbose output when running an
84
+ # individual spec file.
85
+ if config.files_to_run.one?
86
+ # Use the documentation formatter for detailed output,
87
+ # unless a formatter has already been configured
88
+ # (e.g. via a command-line flag).
89
+ config.default_formatter = "doc"
90
+ end
91
+
92
+ # Print the 10 slowest examples and example groups at the
93
+ # end of the spec run, to help surface which specs are running
94
+ # particularly slow.
95
+ config.profile_examples = 10
96
+
97
+ # Run specs in random order to surface order dependencies. If you find an
98
+ # order dependency and want to debug it, you can fix the order by providing
99
+ # the seed, which is printed after each run.
100
+ # --seed 1234
101
+ config.order = :random
102
+
103
+ # Seed global randomization in this process using the `--seed` CLI option.
104
+ # Setting this allows you to use `--seed` to deterministically reproduce
105
+ # test failures related to randomization by passing the same `--seed` value
106
+ # as the one that triggered the failure.
107
+ Kernel.srand config.seed
108
+ =end
109
+ end
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dtg
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - SolarisFlare
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-24 00:00:00.000000000 Z
11
+ date: 2019-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: rails
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: 5.2.3
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: 5.2.3
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: activesupport
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -38,34 +24,6 @@ dependencies:
38
24
  - - ">="
39
25
  - !ruby/object:Gem::Version
40
26
  version: '0'
41
- - !ruby/object:Gem::Dependency
42
- name: sqlite3
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: '0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: rspec-rails
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
27
  description: "A DTG is a DateTimeGroup which is used in the military to save time.
70
28
  \ DTG \n are saved in the format DDHHMML MMM YY, where D is
71
29
  day, H is hour, L is \n letter, M is month, and Y is year.
@@ -80,17 +38,23 @@ executables: []
80
38
  extensions: []
81
39
  extra_rdoc_files: []
82
40
  files:
83
- - MIT-LICENSE
84
- - README.md
41
+ - Gemfile
85
42
  - Rakefile
43
+ - dtg.gemspec
86
44
  - lib/dtg.rb
87
45
  - lib/dtg/active_support/time_with_zone_ext.rb
88
46
  - lib/dtg/date_time_ext.rb
89
- - lib/dtg/railtie.rb
47
+ - lib/dtg/date_time_group.rb
90
48
  - lib/dtg/time_ext.rb
91
49
  - lib/dtg/version.rb
92
50
  - lib/dtg/zones.rb
93
- - lib/tasks/dtg_tasks.rake
51
+ - spec/lib/dtg/active_support/time_with_zone_ext_spec.rb
52
+ - spec/lib/dtg/date_time_ext_spec.rb
53
+ - spec/lib/dtg/date_time_group_spec.rb
54
+ - spec/lib/dtg/time_ext_spec.rb
55
+ - spec/lib/dtg/zones_spec.rb
56
+ - spec/lib/dtg_spec.rb
57
+ - spec/spec_helper.rb
94
58
  homepage: https://github.com/SolarisFlare/dtg/
95
59
  licenses:
96
60
  - MIT
@@ -114,6 +78,13 @@ requirements: []
114
78
  rubyforge_project:
115
79
  rubygems_version: 2.7.7
116
80
  signing_key:
117
- specification_version: 4
81
+ specification_version: 3
118
82
  summary: DTG converts from a DateTime to a DTG
119
- test_files: []
83
+ test_files:
84
+ - spec/spec_helper.rb
85
+ - spec/lib/dtg/zones_spec.rb
86
+ - spec/lib/dtg/time_ext_spec.rb
87
+ - spec/lib/dtg/date_time_group_spec.rb
88
+ - spec/lib/dtg/date_time_ext_spec.rb
89
+ - spec/lib/dtg/active_support/time_with_zone_ext_spec.rb
90
+ - spec/lib/dtg_spec.rb