gmaps_tz 0.0.1
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/.rspec +1 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +50 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/coverage/.last_run.json +5 -0
- data/coverage/.resultset.json +190 -0
- data/gmaps_tz.gemspec +27 -0
- data/lib/gmaps_tz/client/time_zone.rb +11 -0
- data/lib/gmaps_tz/client.rb +49 -0
- data/lib/gmaps_tz/error.rb +42 -0
- data/lib/gmaps_tz/version.rb +3 -0
- data/lib/gmaps_tz.rb +8 -0
- data/spec/client_spec.rb +60 -0
- data/spec/error_spec.rb +0 -0
- data/spec/spec_helper.rb +7 -0
- data/version.rb +3 -0
- metadata +136 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4c398c099a44c91d5f33955f3a21b0030f1a7fca
|
4
|
+
data.tar.gz: 82895c6d72cd11bce737f9b966145c056a1eb9ea
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c5ba752eee35398941adfaa8f15ad240ba860116b232c5148d583c4ce420d0c128a72e00bc61d63e0e185e38b003e7bf430dfc9ca7154243000ca8aaffd46d05
|
7
|
+
data.tar.gz: cdb5977af5c59a5f87c39808d0d441db79f2f916d470b756105aba5f68c0832e50f422788ccad52ea2346a9852c738dbcbd6b91e0630bafe50dce3f27efed6a4
|
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--colour --require spec_helper
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
gmaps_tz (0.0.1)
|
5
|
+
json
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
coveralls (0.7.0)
|
11
|
+
multi_json (~> 1.3)
|
12
|
+
rest-client
|
13
|
+
simplecov (>= 0.7)
|
14
|
+
term-ansicolor
|
15
|
+
thor
|
16
|
+
diff-lcs (1.2.5)
|
17
|
+
docile (1.1.3)
|
18
|
+
json (1.8.1)
|
19
|
+
mime-types (2.1)
|
20
|
+
multi_json (1.8.4)
|
21
|
+
rake (10.1.1)
|
22
|
+
rest-client (1.6.7)
|
23
|
+
mime-types (>= 1.16)
|
24
|
+
rspec (2.14.1)
|
25
|
+
rspec-core (~> 2.14.0)
|
26
|
+
rspec-expectations (~> 2.14.0)
|
27
|
+
rspec-mocks (~> 2.14.0)
|
28
|
+
rspec-core (2.14.8)
|
29
|
+
rspec-expectations (2.14.5)
|
30
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
31
|
+
rspec-mocks (2.14.6)
|
32
|
+
simplecov (0.8.2)
|
33
|
+
docile (~> 1.1.0)
|
34
|
+
multi_json
|
35
|
+
simplecov-html (~> 0.8.0)
|
36
|
+
simplecov-html (0.8.0)
|
37
|
+
term-ansicolor (1.3.0)
|
38
|
+
tins (~> 1.0)
|
39
|
+
thor (0.18.1)
|
40
|
+
tins (1.0.0)
|
41
|
+
|
42
|
+
PLATFORMS
|
43
|
+
ruby
|
44
|
+
|
45
|
+
DEPENDENCIES
|
46
|
+
bundler (~> 1.5)
|
47
|
+
coveralls
|
48
|
+
gmaps_tz!
|
49
|
+
rake
|
50
|
+
rspec
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Pol Miro
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# GmapsTz
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'gmaps_tz'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install gmaps_tz
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it ( http://github.com/<my-github-username>/gmaps_tz/fork )
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,190 @@
|
|
1
|
+
{
|
2
|
+
"RSpec": {
|
3
|
+
"coverage": {
|
4
|
+
"/Users/polmiro/Development/gmaps_tz/lib/gmaps_tz.rb": [
|
5
|
+
1,
|
6
|
+
1,
|
7
|
+
1,
|
8
|
+
1,
|
9
|
+
null,
|
10
|
+
1,
|
11
|
+
null,
|
12
|
+
null
|
13
|
+
],
|
14
|
+
"/Users/polmiro/Development/gmaps_tz/lib/gmaps_tz/error.rb": [
|
15
|
+
1,
|
16
|
+
1,
|
17
|
+
1,
|
18
|
+
1,
|
19
|
+
null,
|
20
|
+
1,
|
21
|
+
null,
|
22
|
+
0,
|
23
|
+
null,
|
24
|
+
1,
|
25
|
+
null,
|
26
|
+
0,
|
27
|
+
null,
|
28
|
+
0,
|
29
|
+
null,
|
30
|
+
0,
|
31
|
+
null,
|
32
|
+
0,
|
33
|
+
null,
|
34
|
+
1,
|
35
|
+
null,
|
36
|
+
null,
|
37
|
+
1,
|
38
|
+
null,
|
39
|
+
1,
|
40
|
+
1,
|
41
|
+
1,
|
42
|
+
null,
|
43
|
+
null,
|
44
|
+
null,
|
45
|
+
1,
|
46
|
+
null,
|
47
|
+
1,
|
48
|
+
null,
|
49
|
+
1,
|
50
|
+
null,
|
51
|
+
1,
|
52
|
+
null,
|
53
|
+
1,
|
54
|
+
null,
|
55
|
+
1,
|
56
|
+
null
|
57
|
+
],
|
58
|
+
"/Users/polmiro/Development/gmaps_tz/lib/gmaps_tz/client/time_zone.rb": [
|
59
|
+
1,
|
60
|
+
1,
|
61
|
+
1,
|
62
|
+
null,
|
63
|
+
1,
|
64
|
+
4,
|
65
|
+
null,
|
66
|
+
null,
|
67
|
+
null,
|
68
|
+
null,
|
69
|
+
null
|
70
|
+
],
|
71
|
+
"/Users/polmiro/Development/gmaps_tz/lib/gmaps_tz/client.rb": [
|
72
|
+
1,
|
73
|
+
1,
|
74
|
+
null,
|
75
|
+
1,
|
76
|
+
1,
|
77
|
+
1,
|
78
|
+
null,
|
79
|
+
1,
|
80
|
+
1,
|
81
|
+
1,
|
82
|
+
null,
|
83
|
+
1,
|
84
|
+
null,
|
85
|
+
1,
|
86
|
+
4,
|
87
|
+
4,
|
88
|
+
4,
|
89
|
+
null,
|
90
|
+
null,
|
91
|
+
1,
|
92
|
+
4,
|
93
|
+
null,
|
94
|
+
4,
|
95
|
+
4,
|
96
|
+
3,
|
97
|
+
null,
|
98
|
+
1,
|
99
|
+
null,
|
100
|
+
null,
|
101
|
+
null,
|
102
|
+
1,
|
103
|
+
null,
|
104
|
+
1,
|
105
|
+
4,
|
106
|
+
null,
|
107
|
+
null,
|
108
|
+
null,
|
109
|
+
null,
|
110
|
+
null,
|
111
|
+
null,
|
112
|
+
1,
|
113
|
+
null,
|
114
|
+
15,
|
115
|
+
null,
|
116
|
+
4,
|
117
|
+
null,
|
118
|
+
null,
|
119
|
+
null,
|
120
|
+
null
|
121
|
+
],
|
122
|
+
"/Users/polmiro/Development/gmaps_tz/spec/client_spec.rb": [
|
123
|
+
1,
|
124
|
+
4,
|
125
|
+
null,
|
126
|
+
1,
|
127
|
+
1,
|
128
|
+
null,
|
129
|
+
1,
|
130
|
+
4,
|
131
|
+
null,
|
132
|
+
null,
|
133
|
+
null,
|
134
|
+
1,
|
135
|
+
1,
|
136
|
+
3,
|
137
|
+
null,
|
138
|
+
null,
|
139
|
+
null,
|
140
|
+
null,
|
141
|
+
null,
|
142
|
+
null,
|
143
|
+
3,
|
144
|
+
null,
|
145
|
+
null,
|
146
|
+
1,
|
147
|
+
1,
|
148
|
+
1,
|
149
|
+
null,
|
150
|
+
null,
|
151
|
+
5,
|
152
|
+
null,
|
153
|
+
1,
|
154
|
+
null,
|
155
|
+
null,
|
156
|
+
1,
|
157
|
+
1,
|
158
|
+
null,
|
159
|
+
null,
|
160
|
+
1,
|
161
|
+
1,
|
162
|
+
null,
|
163
|
+
null,
|
164
|
+
1,
|
165
|
+
1,
|
166
|
+
null,
|
167
|
+
null,
|
168
|
+
1,
|
169
|
+
1,
|
170
|
+
1,
|
171
|
+
1,
|
172
|
+
null,
|
173
|
+
null,
|
174
|
+
1,
|
175
|
+
1,
|
176
|
+
1,
|
177
|
+
1,
|
178
|
+
null,
|
179
|
+
null,
|
180
|
+
null,
|
181
|
+
null,
|
182
|
+
null
|
183
|
+
],
|
184
|
+
"/Users/polmiro/Development/gmaps_tz/spec/error_spec.rb": [
|
185
|
+
|
186
|
+
]
|
187
|
+
},
|
188
|
+
"timestamp": 1393978034
|
189
|
+
}
|
190
|
+
}
|
data/gmaps_tz.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'gmaps_tz/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "gmaps_tz"
|
8
|
+
spec.version = GmapsTz::VERSION
|
9
|
+
spec.authors = ["Pol Miro"]
|
10
|
+
spec.email = ["polmiro@gmail.com"]
|
11
|
+
spec.summary = %q{Ruby Wrapper for the Google Maps Time Zone API}
|
12
|
+
spec.description = %q{Simple Ruby Client for Google Maps Time Zone API https://developers.google.com/maps/documentation/timezone.}
|
13
|
+
spec.homepage = "http://github.com/polmiro/gmaps_tz"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency "json"
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
spec.add_development_dependency "rspec"
|
26
|
+
spec.add_development_dependency "coveralls"
|
27
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require "net/https"
|
2
|
+
require "uri"
|
3
|
+
|
4
|
+
module GmapsTz
|
5
|
+
class Client
|
6
|
+
include TimeZone
|
7
|
+
|
8
|
+
FORMAT = "/json"
|
9
|
+
HOST = "maps.googleapis.com"
|
10
|
+
BASE_PATH = "/maps/api"
|
11
|
+
|
12
|
+
attr_accessor :key
|
13
|
+
|
14
|
+
def initialize(options = {})
|
15
|
+
@key = options[:key]
|
16
|
+
@basic_params = { sensor: false }
|
17
|
+
@basic_params[:key] = options[:key] if options[:key]
|
18
|
+
end
|
19
|
+
|
20
|
+
def get(path, query_params)
|
21
|
+
uri = generate_uri(path, query_params)
|
22
|
+
|
23
|
+
response = Net::HTTP.get_response(uri)
|
24
|
+
if JSON.parse(response.body)["status"] == "OK"
|
25
|
+
response
|
26
|
+
else
|
27
|
+
raise Error.from_response(uri, response)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def generate_uri(path, query_params)
|
34
|
+
URI::HTTPS.build(
|
35
|
+
:host => HOST,
|
36
|
+
:path => BASE_PATH + path + FORMAT,
|
37
|
+
:query => generate_query(@basic_params.merge(query_params))
|
38
|
+
)
|
39
|
+
end
|
40
|
+
|
41
|
+
def generate_query(query_params)
|
42
|
+
query_params.map do |k,v|
|
43
|
+
[CGI.escape(k.to_s), "=", CGI.escape(v.to_s)]
|
44
|
+
end.map(&:join)
|
45
|
+
.join("&")
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
module GmapsTz
|
2
|
+
class Error < StandardError
|
3
|
+
def self.from_response(uri, response)
|
4
|
+
json = JSON.parse(response.body)
|
5
|
+
|
6
|
+
klass = case json["status"]
|
7
|
+
when "INVALID_REQUEST"
|
8
|
+
InvalidRequestError
|
9
|
+
when "OVER_QUERY_LIMIT"
|
10
|
+
OverQueryLimitError
|
11
|
+
when "REQUEST_DENIED"
|
12
|
+
RequestDeniedError
|
13
|
+
when "UNKNOWN_ERROR"
|
14
|
+
UnknownError
|
15
|
+
when "ZERO_RESULTS"
|
16
|
+
ZeroResultsError
|
17
|
+
else
|
18
|
+
UnexpectedResponseError
|
19
|
+
end
|
20
|
+
klass.new(uri, response)
|
21
|
+
end
|
22
|
+
|
23
|
+
attr_accessor :uri, :result
|
24
|
+
|
25
|
+
def initialize(uri, result)
|
26
|
+
@uri = uri
|
27
|
+
@result = result
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
class InvalidRequestError < Error; end
|
32
|
+
|
33
|
+
class OverQueryLimitError < Error; end
|
34
|
+
|
35
|
+
class RequestDeniedError < Error; end
|
36
|
+
|
37
|
+
class UnknownError < Error; end
|
38
|
+
|
39
|
+
class ZeroResultsError < Error; end
|
40
|
+
|
41
|
+
class UnexpectedResponseError < Error; end
|
42
|
+
end
|
data/lib/gmaps_tz.rb
ADDED
data/spec/client_spec.rb
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
describe "Client" do
|
2
|
+
let(:client) { GmapsTz::Client.new(:key => "my_key") }
|
3
|
+
|
4
|
+
class FakeResponse
|
5
|
+
attr_accessor :body
|
6
|
+
|
7
|
+
def initialize(body)
|
8
|
+
self.body = body
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
describe ".time_zone_in" do
|
13
|
+
let(:mocked_response_ok) do
|
14
|
+
body = {
|
15
|
+
"dstOffset" => 28880,
|
16
|
+
"rawOffset" => 28880,
|
17
|
+
"timeZoneId" => "America/Los_Angeles",
|
18
|
+
"timeZoneName" => "Pacific Daylight Time",
|
19
|
+
"status" => "OK"
|
20
|
+
}.to_json
|
21
|
+
FakeResponse.new(body)
|
22
|
+
end
|
23
|
+
|
24
|
+
let(:mocked_response_over_limit) do
|
25
|
+
body = { "status" => "OVER_QUERY_LIMIT" }.to_json
|
26
|
+
FakeResponse.new(body)
|
27
|
+
end
|
28
|
+
|
29
|
+
let(:time) { Time.parse("18-10-1988") }
|
30
|
+
|
31
|
+
it "pings the right API url" do
|
32
|
+
Net::HTTP.should_receive(:get_response)
|
33
|
+
.with(URI("https://maps.googleapis.com/maps/api/timezone/json?sensor=false&key=my_key&location=1.0%2C2.0×tamp=#{time.to_i}"))
|
34
|
+
.and_return(mocked_response_ok)
|
35
|
+
client.time_zone_in("1.0", "2.0", time)
|
36
|
+
end
|
37
|
+
|
38
|
+
it "doesn't append key if not set" do
|
39
|
+
client = GmapsTz::Client.new()
|
40
|
+
Net::HTTP.should_receive(:get_response)
|
41
|
+
.with(URI("https://maps.googleapis.com/maps/api/timezone/json?sensor=false&location=1.0%2C2.0×tamp=#{time.to_i}"))
|
42
|
+
.and_return(mocked_response_ok)
|
43
|
+
client.time_zone_in("1.0", "2.0", time)
|
44
|
+
end
|
45
|
+
|
46
|
+
it "returns a hash with the result when success" do
|
47
|
+
Net::HTTP.stub(:get_response).and_return(mocked_response_ok)
|
48
|
+
response = client.time_zone_in("1.0", "2.0", time)
|
49
|
+
response.should == mocked_response_ok
|
50
|
+
end
|
51
|
+
|
52
|
+
it "raises the corresponding exception when it fails" do
|
53
|
+
Net::HTTP.stub(:get_response).and_return(mocked_response_over_limit)
|
54
|
+
expect {
|
55
|
+
client.time_zone_in("1.0", "2.0", time)
|
56
|
+
}.to raise_error(GmapsTz::OverQueryLimitError)
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
end
|
data/spec/error_spec.rb
ADDED
File without changes
|
data/spec/spec_helper.rb
ADDED
data/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,136 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gmaps_tz
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Pol Miro
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-03-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: json
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.5'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.5'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: coveralls
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: Simple Ruby Client for Google Maps Time Zone API https://developers.google.com/maps/documentation/timezone.
|
84
|
+
email:
|
85
|
+
- polmiro@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- .rspec
|
91
|
+
- Gemfile
|
92
|
+
- Gemfile.lock
|
93
|
+
- LICENSE.txt
|
94
|
+
- README.md
|
95
|
+
- Rakefile
|
96
|
+
- coverage/.last_run.json
|
97
|
+
- coverage/.resultset.json
|
98
|
+
- gmaps_tz.gemspec
|
99
|
+
- lib/gmaps_tz.rb
|
100
|
+
- lib/gmaps_tz/client.rb
|
101
|
+
- lib/gmaps_tz/client/time_zone.rb
|
102
|
+
- lib/gmaps_tz/error.rb
|
103
|
+
- lib/gmaps_tz/version.rb
|
104
|
+
- spec/client_spec.rb
|
105
|
+
- spec/error_spec.rb
|
106
|
+
- spec/spec_helper.rb
|
107
|
+
- version.rb
|
108
|
+
homepage: http://github.com/polmiro/gmaps_tz
|
109
|
+
licenses:
|
110
|
+
- MIT
|
111
|
+
metadata: {}
|
112
|
+
post_install_message:
|
113
|
+
rdoc_options: []
|
114
|
+
require_paths:
|
115
|
+
- lib
|
116
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - '>='
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
121
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
requirements: []
|
127
|
+
rubyforge_project:
|
128
|
+
rubygems_version: 2.0.14
|
129
|
+
signing_key:
|
130
|
+
specification_version: 4
|
131
|
+
summary: Ruby Wrapper for the Google Maps Time Zone API
|
132
|
+
test_files:
|
133
|
+
- spec/client_spec.rb
|
134
|
+
- spec/error_spec.rb
|
135
|
+
- spec/spec_helper.rb
|
136
|
+
has_rdoc:
|