forked from doz/time_zone_ext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtime_zone_ext.gemspec
More file actions
22 lines (19 loc) · 860 Bytes
/
time_zone_ext.gemspec
File metadata and controls
22 lines (19 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/time_zone_ext/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Alexander Danilenko"]
gem.email = ["alexander@danilenko.org"]
gem.description = "Adds #strptime method to ActiveSupport::TimeZone"
gem.summary = "Defines Time.zone.strptime"
gem.homepage = "https://github.com/doz/time_zone_ext"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "time_zone_ext"
gem.require_paths = ["lib"]
gem.version = TimeZoneExt::VERSION
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_dependency "activesupport"
gem.add_dependency "tzinfo"
end