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 CHANGED
@@ -1 +1 @@
1
- 0.1.13
1
+ 0.1.14
@@ -56,12 +56,13 @@ module Overlord
56
56
  begin
57
57
  return JSON.parse(buffer)
58
58
  rescue => ex
59
- puts ex
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(json)
65
+ return Crack::JSON.parse(buffer)
65
66
  rescue => ex
66
67
  puts ex
67
68
  end
data/overlord.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{overlord}
8
- s.version = "0.1.13"
8
+ s.version = "0.1.14"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin Ball", "Joel Duffin"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: overlord
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.13
4
+ version: 0.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Ball