-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdynamic_time_zone.gemspec
More file actions
24 lines (20 loc) · 985 Bytes
/
dynamic_time_zone.gemspec
File metadata and controls
24 lines (20 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
require_relative 'lib/dynamic_time_zone/version'
Gem::Specification.new do |spec|
spec.name = 'dynamic_time_zone'
spec.version = DynamicTimeZone::VERSION
spec.platform = Gem::Platform::RUBY
spec.author = 'AppFolio'
spec.email = 'opensource@appfolio.com'
spec.description = 'Dynamically set the offset from UTC from timezone identifier'
spec.summary = spec.description
spec.homepage = 'https://github.com/appfolio/dynamic_time_zone'
spec.license = 'MIT'
spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|dynamic_time_zone\.gemspec)}] }
spec.require_paths = ['lib']
spec.required_ruby_version = Gem::Requirement.new('< 4.1')
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.add_dependency('activesupport', ['>= 7.2', '< 8.2'])
spec.add_dependency('railties', ['>= 7.2', '< 8.2'])
spec.add_dependency('tzinfo', ['>= 2', '< 3'])
end