google_geocoding 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/google_geocoding.gemspec +1 -1
- data/lib/google_geocoding/geocoder.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/google_geocoding.gemspec
CHANGED
@@ -9,7 +9,7 @@ module GoogleGeocoding
|
|
9
9
|
def initialize(options = {})
|
10
10
|
@options = options
|
11
11
|
@sess = Patron::Session.new
|
12
|
-
@sess.timeout =
|
12
|
+
@sess.timeout = options[:timeout] || 10
|
13
13
|
@sess.base_url = "http://maps.google.com/maps/geo"
|
14
14
|
@sess.headers['User-Agent'] = options[:user_agent]
|
15
15
|
end
|