arbi 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/arbi.rb +1 -1
- metadata +3 -3
data/lib/arbi.rb
CHANGED
@@ -205,7 +205,7 @@ module Arbi
|
|
205
205
|
@address = opts["a"] if opts["a"]
|
206
206
|
@port = opts["p"] if opts["p"]
|
207
207
|
@command = "#{opts["c"]}".gsub(/,+/, ',').gsub(/\s+/, '').split(/,/).
|
208
|
-
uniq.delete_if{|x|x=~/^quit$/i}.push(
|
208
|
+
uniq.delete_if{|x|x=~/^quit$/i}.push("quit\r\n").join("\r\n") if opts["c"]
|
209
209
|
end
|
210
210
|
end
|
211
211
|
end
|
metadata
CHANGED