meridian 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 335aa877b8d31333f5bd990b918014ec6ffe4106b9334e443cc7289c4793ce55
4
+ data.tar.gz: 521389d55f1293fd2df9dc9f2127ed694c8af301cb1add1991d69ac52e7dc057
5
+ SHA512:
6
+ metadata.gz: b3f3deec25e5beea77a73f1724279fbdfb82a979e2576e739d42fdc5cd6e2b55761a4476a95d10566432fb0bb4871dbfeb87eb719db0102980146cd8eed09b93
7
+ data.tar.gz: e5ed072114e859c3210d51015d3213f4ab1149098c03d36e9b47cd2decb61ac4aa21ecddcf4a3f812e45b0920d7f78bee1b7b7738cdbc0352db49eae194652cf
@@ -0,0 +1,45 @@
1
+ name: CI
2
+
3
+ on: push
4
+
5
+ jobs:
6
+ test:
7
+ name: RSpec
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - uses: actions/setup-ruby@v1
12
+ with:
13
+ ruby-version: '2.7.2'
14
+ - uses: actions/cache@v2
15
+ with:
16
+ path: vendor/bundle
17
+ key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
18
+ restore-keys: |
19
+ ${{ runner.os }}-gems-
20
+ - run: |
21
+ bundle config path vendor/bundle
22
+ bundle install --jobs 4 --retry 3
23
+ - name: Run tests
24
+ run: bundle exec rspec
25
+
26
+
27
+ lint:
28
+ name: Rubocop
29
+ runs-on: ubuntu-latest
30
+ steps:
31
+ - uses: actions/checkout@v2
32
+ - uses: actions/setup-ruby@v1
33
+ with:
34
+ ruby-version: '2.7.2'
35
+ - uses: actions/cache@v2
36
+ with:
37
+ path: vendor/bundle
38
+ key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
39
+ restore-keys: |
40
+ ${{ runner.os }}-gems-
41
+ - run: |
42
+ bundle config path vendor/bundle
43
+ bundle install --jobs 4 --retry 3
44
+ - name: Run linter
45
+ run: bundle exec rubocop .
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --require spec_helper
2
+ --format documentation
3
+ --color
@@ -0,0 +1,9 @@
1
+ require:
2
+ - rubocop-rake
3
+ - rubocop-rspec
4
+
5
+ AllCops:
6
+ TargetRubyVersion: 2.7.2
7
+ NewCops: enable
8
+ Exclude:
9
+ - vendor/**/*
@@ -0,0 +1 @@
1
+ ruby-2.7.2
File without changes
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
6
+
7
+ group :development do
8
+ gem 'rake', '~> 12.0'
9
+ gem 'rspec', '~> 3.0'
10
+
11
+ gem 'rubocop'
12
+ gem 'rubocop-rake'
13
+ gem 'rubocop-rspec'
14
+
15
+ gem 'pry'
16
+ end
@@ -0,0 +1,83 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ meridian (0.0.1)
5
+ dry-configurable (~> 0.11.6)
6
+ tzinfo (~> 2.0.3)
7
+ tzinfo-data (~> 1.2020.4)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ ast (2.4.1)
13
+ coderay (1.1.3)
14
+ concurrent-ruby (1.1.7)
15
+ diff-lcs (1.4.4)
16
+ dry-configurable (0.11.6)
17
+ concurrent-ruby (~> 1.0)
18
+ dry-core (~> 0.4, >= 0.4.7)
19
+ dry-equalizer (~> 0.2)
20
+ dry-core (0.5.0)
21
+ concurrent-ruby (~> 1.0)
22
+ dry-equalizer (0.3.0)
23
+ method_source (1.0.0)
24
+ parallel (1.20.1)
25
+ parser (2.7.2.0)
26
+ ast (~> 2.4.1)
27
+ pry (0.13.1)
28
+ coderay (~> 1.1)
29
+ method_source (~> 1.0)
30
+ rainbow (3.0.0)
31
+ rake (12.3.3)
32
+ regexp_parser (2.0.0)
33
+ rexml (3.2.4)
34
+ rspec (3.10.0)
35
+ rspec-core (~> 3.10.0)
36
+ rspec-expectations (~> 3.10.0)
37
+ rspec-mocks (~> 3.10.0)
38
+ rspec-core (3.10.0)
39
+ rspec-support (~> 3.10.0)
40
+ rspec-expectations (3.10.0)
41
+ diff-lcs (>= 1.2.0, < 2.0)
42
+ rspec-support (~> 3.10.0)
43
+ rspec-mocks (3.10.0)
44
+ diff-lcs (>= 1.2.0, < 2.0)
45
+ rspec-support (~> 3.10.0)
46
+ rspec-support (3.10.0)
47
+ rubocop (1.6.1)
48
+ parallel (~> 1.10)
49
+ parser (>= 2.7.1.5)
50
+ rainbow (>= 2.2.2, < 4.0)
51
+ regexp_parser (>= 1.8, < 3.0)
52
+ rexml
53
+ rubocop-ast (>= 1.2.0, < 2.0)
54
+ ruby-progressbar (~> 1.7)
55
+ unicode-display_width (>= 1.4.0, < 2.0)
56
+ rubocop-ast (1.3.0)
57
+ parser (>= 2.7.1.5)
58
+ rubocop-rake (0.5.1)
59
+ rubocop
60
+ rubocop-rspec (2.0.1)
61
+ rubocop (~> 1.0)
62
+ rubocop-ast (>= 1.1.0)
63
+ ruby-progressbar (1.10.1)
64
+ tzinfo (2.0.3)
65
+ concurrent-ruby (~> 1.0)
66
+ tzinfo-data (1.2020.4)
67
+ tzinfo (>= 1.0.0)
68
+ unicode-display_width (1.7.0)
69
+
70
+ PLATFORMS
71
+ ruby
72
+
73
+ DEPENDENCIES
74
+ meridian!
75
+ pry
76
+ rake (~> 12.0)
77
+ rspec (~> 3.0)
78
+ rubocop
79
+ rubocop-rake
80
+ rubocop-rspec
81
+
82
+ BUNDLED WITH
83
+ 2.1.4
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Ethan Turkeltaub
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,3 @@
1
+ # Meridian
2
+
3
+ Meridian (named after [Sandford Meridian](https://en.wikipedia.org/wiki/Sandford_Meridian)) is a gem that aims to make it easier to deal with time zones in Ruby.
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'meridian'
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require 'irb'
15
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,154 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'dry/configurable'
4
+
5
+ require 'meridian/version'
6
+
7
+ class Meridian
8
+ extend Dry::Configurable
9
+
10
+ # This list is taken from the formatted list for ActiveSupport. The keys on
11
+ # their hash are for the formatted names (human names) and the right are the
12
+ # actual TZInfo times.
13
+ #
14
+ # @see https://github.com/rails/rails/blob/fc5dd0b85189811062c85520fd70de8389b55aeb/activesupport/lib/active_support/values/time_zone.rb#L32-L184
15
+ DEFAULT_ALLOWED_ZONES = {
16
+ 'Etc/GMT+12' => 'International Date Line West',
17
+ 'Pacific/Midway' => 'Midway Island',
18
+ 'Pacific/Pago_Pago' => 'American Samoa',
19
+ 'Pacific/Honolulu' => 'Hawaii',
20
+ 'America/Juneau' => 'Alaska',
21
+ 'America/Los_Angeles' => 'Pacific Time (US & Canada)',
22
+ 'America/Tijuana' => 'Tijuana',
23
+ 'America/Denver' => 'Mountain Time (US & Canada)',
24
+ 'America/Phoenix' => 'Arizona',
25
+ 'America/Chihuahua' => 'Chihuahua',
26
+ 'America/Mazatlan' => 'Mazatlan',
27
+ 'America/Chicago' => 'Central Time (US & Canada)',
28
+ 'America/Regina' => 'Saskatchewan',
29
+ 'America/Mexico_City' => 'Mexico City',
30
+ 'America/Monterrey' => 'Monterrey',
31
+ 'America/Guatemala' => 'Central America',
32
+ 'America/New_York' => 'Eastern Time (US & Canada)',
33
+ 'America/Indiana/Indianapolis' => 'Indiana (East)',
34
+ 'America/Bogota' => 'Bogota',
35
+ 'America/Lima' => 'Lima',
36
+ 'America/Halifax' => 'Atlantic Time (Canada)',
37
+ 'America/Caracas' => 'Caracas',
38
+ 'America/La_Paz' => 'La Paz',
39
+ 'America/Santiago' => 'Santiago',
40
+ 'America/St_Johns' => 'Newfoundland',
41
+ 'America/Sao_Paulo' => 'Brasilia',
42
+ 'America/Argentina/Buenos_Aires' => 'Buenos Aires',
43
+ 'America/Montevideo' => 'Montevideo',
44
+ 'America/Guyana' => 'Georgetown',
45
+ 'America/Puerto_Rico' => 'Puerto Rico',
46
+ 'America/Godthab' => 'Greenland',
47
+ 'Atlantic/South_Georgia' => 'Mid-Atlantic',
48
+ 'Atlantic/Azores' => 'Azores',
49
+ 'Atlantic/Cape_Verde' => 'Cape Verde Is.',
50
+ 'Europe/Dublin' => 'Dublin',
51
+ 'Europe/Lisbon' => 'Lisbon',
52
+ 'Europe/London' => 'London',
53
+ 'Africa/Casablanca' => 'Casablanca',
54
+ 'Africa/Monrovia' => 'Monrovia',
55
+ 'Etc/UTC' => 'UTC',
56
+ 'Europe/Belgrade' => 'Belgrade',
57
+ 'Europe/Bratislava' => 'Bratislava',
58
+ 'Europe/Budapest' => 'Budapest',
59
+ 'Europe/Ljubljana' => 'Ljubljana',
60
+ 'Europe/Prague' => 'Prague',
61
+ 'Europe/Sarajevo' => 'Sarajevo',
62
+ 'Europe/Skopje' => 'Skopje',
63
+ 'Europe/Warsaw' => 'Warsaw',
64
+ 'Europe/Zagreb' => 'Zagreb',
65
+ 'Europe/Brussels' => 'Brussels',
66
+ 'Europe/Copenhagen' => 'Copenhagen',
67
+ 'Europe/Madrid' => 'Madrid',
68
+ 'Europe/Paris' => 'Paris',
69
+ 'Europe/Amsterdam' => 'Amsterdam',
70
+ 'Europe/Berlin' => 'Berlin',
71
+ 'Europe/Zurich' => 'Zurich',
72
+ 'Europe/Rome' => 'Rome',
73
+ 'Europe/Stockholm' => 'Stockholm',
74
+ 'Europe/Vienna' => 'Vienna',
75
+ 'Africa/Algiers' => 'West Central Africa',
76
+ 'Europe/Bucharest' => 'Bucharest',
77
+ 'Africa/Cairo' => 'Cairo',
78
+ 'Europe/Helsinki' => 'Helsinki',
79
+ 'Europe/Kiev' => 'Kyiv',
80
+ 'Europe/Riga' => 'Riga',
81
+ 'Europe/Sofia' => 'Sofia',
82
+ 'Europe/Tallinn' => 'Tallinn',
83
+ 'Europe/Vilnius' => 'Vilnius',
84
+ 'Europe/Athens' => 'Athens',
85
+ 'Europe/Istanbul' => 'Istanbul',
86
+ 'Europe/Minsk' => 'Minsk',
87
+ 'Asia/Jerusalem' => 'Jerusalem',
88
+ 'Africa/Harare' => 'Harare',
89
+ 'Africa/Johannesburg' => 'Pretoria',
90
+ 'Europe/Kaliningrad' => 'Kaliningrad',
91
+ 'Europe/Moscow' => 'Moscow',
92
+ 'Europe/Volgograd' => 'Volgograd',
93
+ 'Europe/Samara' => 'Samara',
94
+ 'Asia/Kuwait' => 'Kuwait',
95
+ 'Asia/Riyadh' => 'Riyadh',
96
+ 'Africa/Nairobi' => 'Nairobi',
97
+ 'Asia/Baghdad' => 'Baghdad',
98
+ 'Asia/Tehran' => 'Tehran',
99
+ 'Asia/Muscat' => 'Muscat',
100
+ 'Asia/Baku' => 'Baku',
101
+ 'Asia/Tbilisi' => 'Tbilisi',
102
+ 'Asia/Yerevan' => 'Yerevan',
103
+ 'Asia/Kabul' => 'Kabul',
104
+ 'Asia/Yekaterinburg' => 'Ekaterinburg',
105
+ 'Asia/Karachi' => 'Karachi',
106
+ 'Asia/Tashkent' => 'Tashkent',
107
+ 'Asia/Kolkata' => 'Kolkata',
108
+ 'Asia/Kathmandu' => 'Kathmandu',
109
+ 'Asia/Dhaka' => 'Dhaka',
110
+ 'Asia/Colombo' => 'Sri Jayawardenepura',
111
+ 'Asia/Almaty' => 'Almaty',
112
+ 'Asia/Novosibirsk' => 'Novosibirsk',
113
+ 'Asia/Rangoon' => 'Rangoon',
114
+ 'Asia/Bangkok' => 'Bangkok',
115
+ 'Asia/Jakarta' => 'Jakarta',
116
+ 'Asia/Krasnoyarsk' => 'Krasnoyarsk',
117
+ 'Asia/Shanghai' => 'Beijing',
118
+ 'Asia/Chongqing' => 'Chongqing',
119
+ 'Asia/Hong_Kong' => 'Hong Kong',
120
+ 'Asia/Urumqi' => 'Urumqi',
121
+ 'Asia/Kuala_Lumpur' => 'Kuala Lumpur',
122
+ 'Asia/Singapore' => 'Singapore',
123
+ 'Asia/Taipei' => 'Taipei',
124
+ 'Australia/Perth' => 'Perth',
125
+ 'Asia/Irkutsk' => 'Irkutsk',
126
+ 'Asia/Ulaanbaatar' => 'Ulaanbaatar',
127
+ 'Asia/Seoul' => 'Seoul',
128
+ 'Asia/Tokyo' => 'Tokyo',
129
+ 'Asia/Yakutsk' => 'Yakutsk',
130
+ 'Australia/Darwin' => 'Darwin',
131
+ 'Australia/Adelaide' => 'Adelaide',
132
+ 'Australia/Melbourne' => 'Melbourne',
133
+ 'Australia/Sydney' => 'Sydney',
134
+ 'Australia/Brisbane' => 'Brisbane',
135
+ 'Australia/Hobart' => 'Hobart',
136
+ 'Asia/Vladivostok' => 'Vladivostok',
137
+ 'Pacific/Guam' => 'Guam',
138
+ 'Pacific/Port_Moresby' => 'Port Moresby',
139
+ 'Asia/Magadan' => 'Magadan',
140
+ 'Asia/Srednekolymsk' => 'Srednekolymsk',
141
+ 'Pacific/Guadalcanal' => 'Solomon Is.',
142
+ 'Pacific/Noumea' => 'New Caledonia',
143
+ 'Pacific/Fiji' => 'Fiji',
144
+ 'Asia/Kamchatka' => 'Kamchatka',
145
+ 'Pacific/Majuro' => 'Marshall Is.',
146
+ 'Pacific/Auckland' => 'Auckland',
147
+ 'Pacific/Tongatapu' => 'Nuku\'alofa',
148
+ 'Pacific/Fakaofo' => 'Tokelau Is.',
149
+ 'Pacific/Chatham' => 'Chatham Is.',
150
+ 'Pacific/Apia' => 'Samoa'
151
+ }.freeze
152
+
153
+ setting :allowed_zones, DEFAULT_ALLOWED_ZONES, reader: true
154
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ class Meridian
4
+ VERSION = '0.0.1'
5
+ end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/meridian/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'meridian'
7
+ spec.version = Meridian::VERSION
8
+ spec.authors = ['Ethan Turkeltaub']
9
+ spec.email = ['ethan.turkeltaub@hey.com']
10
+
11
+ spec.summary = 'Easier time zones for Ruby and Rails.'
12
+ spec.description = 'Easier time zones for Ruby and Rails.'
13
+ spec.homepage = 'https://github.com/ethnt/meridian'
14
+ spec.license = 'MIT'
15
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
16
+
17
+ spec.metadata['homepage_uri'] = spec.homepage
18
+ spec.metadata['source_code_uri'] = 'https://github.com/ethnt/meridian'
19
+ spec.metadata['changelog_uri'] = 'https://github.com/ethnt/meridian/blob/master/CHANGELOG.md'
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = 'exe'
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ['lib']
29
+
30
+ spec.add_runtime_dependency 'dry-configurable', '~> 0.11.6'
31
+ spec.add_runtime_dependency 'tzinfo', '~> 2.0.3'
32
+ spec.add_runtime_dependency 'tzinfo-data', '~> 1.2020.4'
33
+ end
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: meridian
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ethan Turkeltaub
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-12-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: dry-configurable
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.11.6
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.11.6
27
+ - !ruby/object:Gem::Dependency
28
+ name: tzinfo
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 2.0.3
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 2.0.3
41
+ - !ruby/object:Gem::Dependency
42
+ name: tzinfo-data
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.2020.4
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.2020.4
55
+ description: Easier time zones for Ruby and Rails.
56
+ email:
57
+ - ethan.turkeltaub@hey.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".github/workflows/ci.yml"
63
+ - ".gitignore"
64
+ - ".rspec"
65
+ - ".rubocop.yml"
66
+ - ".ruby-version"
67
+ - CHANGELOG.md
68
+ - Gemfile
69
+ - Gemfile.lock
70
+ - LICENSE.txt
71
+ - README.md
72
+ - Rakefile
73
+ - bin/console
74
+ - bin/setup
75
+ - lib/meridian.rb
76
+ - lib/meridian/version.rb
77
+ - meridian.gemspec
78
+ homepage: https://github.com/ethnt/meridian
79
+ licenses:
80
+ - MIT
81
+ metadata:
82
+ homepage_uri: https://github.com/ethnt/meridian
83
+ source_code_uri: https://github.com/ethnt/meridian
84
+ changelog_uri: https://github.com/ethnt/meridian/blob/master/CHANGELOG.md
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: 2.7.0
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ requirements: []
100
+ rubygems_version: 3.1.4
101
+ signing_key:
102
+ specification_version: 4
103
+ summary: Easier time zones for Ruby and Rails.
104
+ test_files: []