forked from panthomakos/timezone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timezone.gemspec
25 lines (21 loc) · 1.18 KB
/
timezone.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- 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 = ["[email protected]"]
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 the geonames API for timezone latitude and longitude lookup (http://www.geonames.org/export/web-services.html).}
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')
end