chore(Rakefile): misc_options should support + -> , conversion

This commit is contained in:
Igor Minar 2012-09-20 01:12:53 -07:00
parent 43ac783d35
commit 0ae0591f42

View file

@ -346,5 +346,5 @@ def start_testacular(config, singleRun, browsers, misc_options)
"#{config} " +
"#{'--single-run=true' if singleRun} " +
"#{'--browsers=' + browsers.gsub('+', ',') if browsers} " +
"#{misc_options}"
"#{(misc_options || '').gsub('+', ',')}"
end