jgrep 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/jgrep.gemspec +1 -1
- data/lib/jgrep.rb +0 -2
- metadata +2 -2
data/jgrep.gemspec
CHANGED
data/lib/jgrep.rb
CHANGED
@@ -29,8 +29,6 @@ module JGrep
|
|
29
29
|
|
30
30
|
#Correctly format values so we can do the correct type of comparison
|
31
31
|
def self.format(kvalue, value)
|
32
|
-
puts kvalue
|
33
|
-
puts value
|
34
32
|
if kvalue =~ /^\d+$/ || value =~ /^\d+$/
|
35
33
|
return Integer(kvalue), Integer(value)
|
36
34
|
elsif kvalue =~ /^\d+.\d+$/ || value =~ /^\d+.\d+$/
|