google_tz 0.3.1 → 0.3.2
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 +4 -4
- data/Gemfile.lock +1 -1
- data/Histroy.md +5 -0
- data/google_tz.gemspec +2 -2
- data/lib/google_tz/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c68306343c8d2c47901f57f49366bd5dda56ce2
|
4
|
+
data.tar.gz: 188c5d48394bb425b029d4571a9dc0fff698bbb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfc7cb3236efedb8994722a8eff31f14c34bbec821eb7f2d79f040494c4397e904f2e3acd0a710b09fa85b8c3aea77901c6904f667ad804e3046cb87ff659537
|
7
|
+
data.tar.gz: 09ca0691bc41d6c21cf80eb74a5a3544c335c824f4bd19641fc4ed6d1a03946d30437009bb687b318cb69deedd92dcd3e121ba7ea3645360d0c8192caf9514a6
|
data/Gemfile.lock
CHANGED
data/Histroy.md
CHANGED
data/google_tz.gemspec
CHANGED
@@ -5,8 +5,8 @@ Gem::Specification.new do |s|
|
|
5
5
|
s.name = 'google_tz'
|
6
6
|
s.version = GoogleTZAPI::VERSION
|
7
7
|
s.date = '2013-09-02'
|
8
|
-
s.summary = "Get timezone information for a latitude, longitude, and
|
9
|
-
s.description = "Get timezone information for a location from the Google Timezone API
|
8
|
+
s.summary = "Get timezone information for a latitude, longitude, and optionally a timestamp, sensor, and language."
|
9
|
+
s.description = "Get timezone information for a location from the [Google Timezone API](https://developers.google.com/maps/documentation/timezone/) using the locations latitude, longitude, and optionally a timestamp, sensor, and language."
|
10
10
|
s.authors = ["Daniel McGraw"]
|
11
11
|
s.email = 'dan.j.mcgraw@gmail.com'
|
12
12
|
s.files = `git ls-files`.split("\n")
|
data/lib/google_tz/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google_tz
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel McGraw
|
@@ -38,9 +38,9 @@ dependencies:
|
|
38
38
|
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
description: Get timezone information for a location from the Google Timezone API
|
42
|
-
|
43
|
-
|
41
|
+
description: Get timezone information for a location from the [Google Timezone API](https://developers.google.com/maps/documentation/timezone/)
|
42
|
+
using the locations latitude, longitude, and optionally a timestamp, sensor, and
|
43
|
+
language.
|
44
44
|
email: dan.j.mcgraw@gmail.com
|
45
45
|
executables: []
|
46
46
|
extensions: []
|
@@ -84,7 +84,8 @@ rubyforge_project:
|
|
84
84
|
rubygems_version: 2.0.6
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
|
-
summary: Get timezone information for a latitude, longitude, and
|
87
|
+
summary: Get timezone information for a latitude, longitude, and optionally a timestamp,
|
88
|
+
sensor, and language.
|
88
89
|
test_files:
|
89
90
|
- spec/lib/google_tz_spec.rb
|
90
91
|
- spec/spec_helper.rb
|