Sha256: 12bab35d53707a01b61bb80f90cf287255e24059e056e486a4675e76cce4b232

Contents?: true

Size: 945 Bytes

Versions: 5

Compression:

Stored size: 945 Bytes

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'google_timezone/version'

Gem::Specification.new do |gem|
  gem.name          = "google_timezone"
  gem.version       = GoogleTimezone::VERSION
  gem.authors       = ["sck-v"]
  gem.email         = ["kryak.iv@gmail.com"]
  gem.description   = %q{Get timezone info by known coordinates}
  gem.summary       = %q{Small gem to get timezone info by known coordinates using google timezone api.
                        https://developers.google.com/maps/documentation/timezone/}
  gem.homepage      = ""

  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.require_paths = ["lib"]

  gem.add_development_dependency 'rspec'
  gem.add_development_dependency 'rspec-mocks'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
google_timezone-0.0.6 google_timezone.gemspec
google_timezone-0.0.5 google_timezone.gemspec
google_timezone-0.0.4 google_timezone.gemspec
google_timezone-0.0.3 google_timezone.gemspec
google_timezone-0.0.1 google_timezone.gemspec