Sha256: 84099186cf92823fa5b42f7acc83e80726e38450d454568bbdf83341eed648c4
Contents?: true
Size: 1.14 KB
Versions: 11
Compression:
Stored size: 1.14 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path('../lib', __FILE__) require 'timezone/version' Gem::Specification.new do |s| s.name = 'timezone' s.version = Timezone::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Pan Thomakos'] s.email = ['pan.thomakos@gmail.com'] s.homepage = 'https://github.com/panthomakos/timezone' s.summary = "timezone-#{Timezone::VERSION}" s.license = 'MIT' s.description = 'Accurate current and historical timezones for Ruby with ' \ 'support for Geonames and Google latitude - longitude lookups.' s.rubyforge_project = 'timezone' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*` .split("\n").map { |f| File.basename(f) } s.extra_rdoc_files = ['README.markdown', 'License.txt'] s.rdoc_options = ['--charset=UTF-8'] s.require_paths = ['lib'] s.add_development_dependency('rake') s.add_development_dependency('minitest', '~> 5.8') s.add_development_dependency('rubocop', '= 0.40') s.add_development_dependency('timecop', '~> 0.8') end
Version data entries
11 entries across 11 versions & 1 rubygems