overlord 0.1.13 → 0.1.14
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.
- data/VERSION +1 -1
- data/lib/overlord/google_base.rb +3 -2
- data/overlord.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.14
|
data/lib/overlord/google_base.rb
CHANGED
|
@@ -56,12 +56,13 @@ module Overlord
|
|
|
56
56
|
begin
|
|
57
57
|
return JSON.parse(buffer)
|
|
58
58
|
rescue => ex
|
|
59
|
-
|
|
59
|
+
# Let the crack parser try below
|
|
60
|
+
#puts ex
|
|
60
61
|
end
|
|
61
62
|
|
|
62
63
|
# Try the crack parser
|
|
63
64
|
begin
|
|
64
|
-
return Crack::JSON.parse(
|
|
65
|
+
return Crack::JSON.parse(buffer)
|
|
65
66
|
rescue => ex
|
|
66
67
|
puts ex
|
|
67
68
|
end
|
data/overlord.gemspec
CHANGED