ziptz 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +97 -0
- data/Gemfile.travis +6 -0
- data/LICENSE +20 -0
- data/README.md +71 -0
- data/Rakefile +52 -0
- data/database.yml +3 -0
- data/lib/ziptz/version.rb +3 -0
- data/lib/ziptz.rb +65 -0
- data/spec/spec_helper.rb +9 -0
- data/spec/ziptz_spec.rb +53 -0
- data/ziptz.data +41733 -0
- data/ziptz.gemspec +21 -0
- metadata +61 -0
data/ziptz.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
lib = File.expand_path('../lib/', __FILE__)
|
2
|
+
$:.unshift lib unless $:.include?(lib)
|
3
|
+
require 'ziptz/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = 'ziptz'
|
7
|
+
s.version = ZipTZ::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ['Keith Morrison']
|
10
|
+
s.email = 'keithm@infused.org'
|
11
|
+
s.homepage = 'http://github.com/infused/ziptz'
|
12
|
+
s.summary = 'TimeZone for any 5-digit US zip code'
|
13
|
+
s.description = 'Lookup the Timezone for any 5-digit US zip code'
|
14
|
+
s.license = 'MIT'
|
15
|
+
|
16
|
+
s.rdoc_options = ['--charset=UTF-8']
|
17
|
+
s.extra_rdoc_files = ['README.md', 'LICENSE']
|
18
|
+
s.files = Dir['[A-Z]*', '{data,lib,spec}/**/*', 'ziptz.gemspec']
|
19
|
+
s.test_files = Dir.glob('spec/**/*_spec.rb')
|
20
|
+
s.require_paths = ['lib']
|
21
|
+
end
|
metadata
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ziptz
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Keith Morrison
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-06-01 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Lookup the Timezone for any 5-digit US zip code
|
14
|
+
email: keithm@infused.org
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files:
|
18
|
+
- README.md
|
19
|
+
- LICENSE
|
20
|
+
files:
|
21
|
+
- Gemfile
|
22
|
+
- Gemfile.lock
|
23
|
+
- Gemfile.travis
|
24
|
+
- LICENSE
|
25
|
+
- README.md
|
26
|
+
- Rakefile
|
27
|
+
- database.yml
|
28
|
+
- lib/ziptz.rb
|
29
|
+
- lib/ziptz/version.rb
|
30
|
+
- spec/spec_helper.rb
|
31
|
+
- spec/ziptz_spec.rb
|
32
|
+
- ziptz.data
|
33
|
+
- ziptz.gemspec
|
34
|
+
homepage: http://github.com/infused/ziptz
|
35
|
+
licenses:
|
36
|
+
- MIT
|
37
|
+
metadata: {}
|
38
|
+
post_install_message:
|
39
|
+
rdoc_options:
|
40
|
+
- "--charset=UTF-8"
|
41
|
+
require_paths:
|
42
|
+
- lib
|
43
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
requirements: []
|
54
|
+
rubyforge_project:
|
55
|
+
rubygems_version: 2.4.6
|
56
|
+
signing_key:
|
57
|
+
specification_version: 4
|
58
|
+
summary: TimeZone for any 5-digit US zip code
|
59
|
+
test_files:
|
60
|
+
- spec/ziptz_spec.rb
|
61
|
+
has_rdoc:
|