dynamic_time_zone 0.6.2 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e159af46f59f20e48137d90de0dbc30e41163cf0a790a0c398f8dd1cbde528c
4
- data.tar.gz: 46dd6830341e2df50d96edf63b0429babbb7a9db6e63516d436364800c6eec45
3
+ metadata.gz: e3fb05857af2dff6c22baa88e01fffde1219ea1a185ff92b4e3042ae774dbda0
4
+ data.tar.gz: dd5b5399b7d3ec4ee33332cb1ad722de288557fa47c91ba0f0ac4adab274a14d
5
5
  SHA512:
6
- metadata.gz: 3bc860e1965cf496fc683cb4a627ef06cd531a1d191425e2e1fa4140b549d2b23d4a549f57565c699bc28957080a236ffcd6c088558233ea1df2c960216a7da8
7
- data.tar.gz: f9f7294ea3ee58f85822856f7e06df1575764fa8ff138fe1c62f54eaa42b98ed71c2371f7b5110aa2279109db63afeab45464706fe3928b949089151940514ba
6
+ metadata.gz: c3aa48570ff7740a5f9c53bf40e42ffec54a581f68ed5b79e22d7d5015e7cff16cc9a504bd9a89f8b6a067a0da648cd623c1dbb9e4e60a6fdbc2244cb5df5734
7
+ data.tar.gz: 5987178046de203091ae31c7fe783ef699e6dffa43d47a3cd3ce9606dce80746a71cc85fb419c6c2e63245f9a1ea778171488b48f19abc39d201d385fc4558ec
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2020-2024 AppFolio, Inc
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.
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/dynamic_time_zone/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'dynamic_time_zone'
7
+ spec.version = DynamicTimeZone::VERSION
8
+ spec.platform = Gem::Platform::RUBY
9
+ spec.author = 'AppFolio'
10
+ spec.email = 'opensource@appfolio.com'
11
+ spec.description = 'Dynamically set the offset from UTC from timezone identifier'
12
+ spec.summary = spec.description
13
+ spec.homepage = 'https://github.com/appfolio/dynamic_time_zone'
14
+ spec.license = 'MIT'
15
+ spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|.*gemspec)}] }
16
+ spec.require_paths = ['lib']
17
+
18
+ spec.required_ruby_version = Gem::Requirement.new('< 3.5')
19
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
20
+
21
+ spec.add_dependency('activesupport', ['>= 7', '< 8.1'])
22
+ spec.add_dependency('railties', ['>= 7', '< 8.1'])
23
+ spec.add_dependency('tzinfo', ['>= 2', '< 3'])
24
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DynamicTimeZone
4
- VERSION = '0.6.2'
4
+ VERSION = '1.0.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dynamic_time_zone
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
- - Appfolio
8
- autorequire:
7
+ - AppFolio
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2022-09-10 00:00:00.000000000 Z
10
+ date: 2025-03-26 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activesupport
@@ -16,60 +15,68 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '6.1'
18
+ version: '7'
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
- version: '7.1'
21
+ version: '8.1'
23
22
  type: :runtime
24
23
  prerelease: false
25
24
  version_requirements: !ruby/object:Gem::Requirement
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: '6.1'
28
+ version: '7'
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
- version: '7.1'
31
+ version: '8.1'
33
32
  - !ruby/object:Gem::Dependency
34
33
  name: railties
35
34
  requirement: !ruby/object:Gem::Requirement
36
35
  requirements:
37
36
  - - ">="
38
37
  - !ruby/object:Gem::Version
39
- version: '6.1'
38
+ version: '7'
40
39
  - - "<"
41
40
  - !ruby/object:Gem::Version
42
- version: '7.1'
41
+ version: '8.1'
43
42
  type: :runtime
44
43
  prerelease: false
45
44
  version_requirements: !ruby/object:Gem::Requirement
46
45
  requirements:
47
46
  - - ">="
48
47
  - !ruby/object:Gem::Version
49
- version: '6.1'
48
+ version: '7'
50
49
  - - "<"
51
50
  - !ruby/object:Gem::Version
52
- version: '7.1'
51
+ version: '8.1'
53
52
  - !ruby/object:Gem::Dependency
54
53
  name: tzinfo
55
54
  requirement: !ruby/object:Gem::Requirement
56
55
  requirements:
57
- - - "~>"
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '2'
59
+ - - "<"
58
60
  - !ruby/object:Gem::Version
59
- version: '2.0'
61
+ version: '3'
60
62
  type: :runtime
61
63
  prerelease: false
62
64
  version_requirements: !ruby/object:Gem::Requirement
63
65
  requirements:
64
- - - "~>"
66
+ - - ">="
65
67
  - !ruby/object:Gem::Version
66
- version: '2.0'
67
- description:
68
- email:
68
+ version: '2'
69
+ - - "<"
70
+ - !ruby/object:Gem::Version
71
+ version: '3'
72
+ description: Dynamically set the offset from UTC from timezone identifier
73
+ email: opensource@appfolio.com
69
74
  executables: []
70
75
  extensions: []
71
76
  extra_rdoc_files: []
72
77
  files:
78
+ - LICENSE.txt
79
+ - dynamic_time_zone.gemspec
73
80
  - lib/dynamic_time_zone.rb
74
81
  - lib/dynamic_time_zone/date_patch.rb
75
82
  - lib/dynamic_time_zone/identifier_builder.rb
@@ -82,25 +89,25 @@ files:
82
89
  - lib/dynamic_time_zone/validator.rb
83
90
  - lib/dynamic_time_zone/version.rb
84
91
  homepage: https://github.com/appfolio/dynamic_time_zone
85
- licenses: []
86
- metadata: {}
87
- post_install_message:
92
+ licenses:
93
+ - MIT
94
+ metadata:
95
+ allowed_push_host: https://rubygems.org
88
96
  rdoc_options: []
89
97
  require_paths:
90
98
  - lib
91
99
  required_ruby_version: !ruby/object:Gem::Requirement
92
100
  requirements:
93
- - - ">="
101
+ - - "<"
94
102
  - !ruby/object:Gem::Version
95
- version: '0'
103
+ version: '3.5'
96
104
  required_rubygems_version: !ruby/object:Gem::Requirement
97
105
  requirements:
98
106
  - - ">="
99
107
  - !ruby/object:Gem::Version
100
108
  version: '0'
101
109
  requirements: []
102
- rubygems_version: 3.3.4
103
- signing_key:
110
+ rubygems_version: 3.6.2
104
111
  specification_version: 4
105
112
  summary: Dynamically set the offset from UTC from timezone identifier
106
113
  test_files: []