rightmove_wrangler 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rightmove_wrangler.rb +1 -2
- data/lib/rightmove_wrangler/version.rb +1 -1
- metadata +1 -1
data/lib/rightmove_wrangler.rb
CHANGED
@@ -75,10 +75,9 @@ module RightmoveWrangler
|
|
75
75
|
Dir.foreach(@options[:path]) do |file|
|
76
76
|
$stdout.puts "Checking #{file}"
|
77
77
|
if match = /\.(zip|blm)/i.match(file)
|
78
|
-
match.gsub!(/\./, '')
|
79
78
|
threads << Thread.new do
|
80
79
|
$stdout.puts "Working on #{file}"
|
81
|
-
send("work_#{match}_file".to_sym)
|
80
|
+
send("work_#{match[1]}_file".to_sym)
|
82
81
|
end
|
83
82
|
end
|
84
83
|
end
|