jgrep 1.0.2 → 1.0.3

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.
Files changed (3) hide show
  1. data/jgrep.gemspec +1 -1
  2. data/lib/jgrep.rb +0 -2
  3. metadata +2 -2
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "jgrep"
3
- s.version = "1.0.2"
3
+ s.version = "1.0.3"
4
4
 
5
5
  s.authors = ["P Loubser"]
6
6
  s.date = %q{2011-07-19}
@@ -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+$/
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 2
9
- version: 1.0.2
8
+ - 3
9
+ version: 1.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - P Loubser