Sha256: c8df20909c1f3ac383228d8ad718d3f9166c4df349c77f4852b4f953fddf439b

Contents?: true

Size: 1.43 KB

Versions: 9

Compression:

Stored size: 1.43 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    = "http://github.com/panthomakos/timezone"
  s.summary     = "timezone-#{Timezone::VERSION}"
  s.description = %q{A simple way to get accurate current and historical timezone information based on zone or latitude and longitude coordinates. This gem uses the tz database (http://www.twinsun.com/tz/tz-link.htm) for historical timezone information. It also uses either the geonames API (http://www.geonames.org/export/web-services.html) or Google timezone API (https://developers.google.com/maps/documentation/timezone/) for timezone latitude and longitude lookup.}
  s.license     = 'MIT'

  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', '~> 4.0')
  s.add_development_dependency('timecop')
  s.add_development_dependency('mocha')
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
timezone-0.4.0 timezone.gemspec
timezone-0.3.11 timezone.gemspec
timezone-0.3.10 timezone.gemspec
timezone-0.3.9 timezone.gemspec
timezone-0.3.8 timezone.gemspec
timezone-0.3.7 timezone.gemspec
timezone-0.3.6 timezone.gemspec
timezone-0.3.5 timezone.gemspec
timezone-0.3.4 timezone.gemspec