Skip to content

Commit

Permalink
Remove debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
ploubser committed Jul 19, 2011
1 parent 3830a68 commit 14ca28a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion jgrep.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "jgrep"
s.version = "1.0.2"
s.version = "1.0.3"

s.authors = ["P Loubser"]
s.date = %q{2011-07-19}
Expand Down
2 changes: 0 additions & 2 deletions lib/jgrep.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ def self.jgrep(json, expression)

#Correctly format values so we can do the correct type of comparison
def self.format(kvalue, value)
puts kvalue
puts value
if kvalue =~ /^\d+$/ || value =~ /^\d+$/
return Integer(kvalue), Integer(value)
elsif kvalue =~ /^\d+.\d+$/ || value =~ /^\d+.\d+$/
Expand Down

0 comments on commit 14ca28a

Please sign in to comment.