gmaps_tz 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7c877f6ab3063838221dd5985f5adb81a3b282f7
4
- data.tar.gz: 577c1c48ea4c9c8c29fd05b2de266cb1dc1d4a04
3
+ metadata.gz: 59a280c93ebffa03e6874c562c1b67d8c0a99070
4
+ data.tar.gz: 13118d157707a5366bdd44c9d8e9e6b60664ac3f
5
5
  SHA512:
6
- metadata.gz: 5775b53a1dff85e9331f51b016c8f2af8f47dca0d24dd48134aed185b22d0fa54a2e0a11dfed3155f18a5e23089a1332fb1ae86c557ade4ee250f4dc2a137e95
7
- data.tar.gz: 4c0c1cae51c1500bd2e76b8de0ae007c925c219321a6876491cc52495a908a745faf867c4d1ca4eab0d3102c95dae19cd081055ca3d73ea9968c7fa748d3c7f0
6
+ metadata.gz: cdaeac3494b21bdfc7b7bc038ef19598639764c3070aca4ca9f8317b5b43b5623279f5d6223c506bbba0b752291d547b5f2dc098239835ddff35b350d99073cf
7
+ data.tar.gz: 344d400b72b3598beeee5d7a77fe31bb6f269fc76d6521c462fbafa8cfa03e19d22c0337d0c6701516a527d2afcc9090844aa579d67e57a7f6dc79bf38731fb2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gmaps_tz (0.0.3)
4
+ gmaps_tz (0.0.4)
5
5
  json
6
6
 
7
7
  GEM
@@ -9,12 +9,12 @@ module GmapsTz
9
9
  HOST = "maps.googleapis.com"
10
10
  BASE_PATH = "/maps/api"
11
11
 
12
- attr_accessor :key
13
-
14
12
  def initialize(options = {})
15
13
  @key = options[:key]
16
14
  @basic_params = { sensor: false }
17
15
  @basic_params[:key] = options[:key] if options[:key]
16
+ @basic_params[:client] = options[:client] if options[:client]
17
+ @basic_params[:signature] = options[:signature] if options[:signature]
18
18
  end
19
19
 
20
20
  def get(path, query_params)
@@ -1,3 +1,3 @@
1
1
  module GmapsTz
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gmaps_tz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pol Miro