loris 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.3
|
@@ -18,7 +18,7 @@ class CoffeeScriptRunner
|
|
18
18
|
|
19
19
|
@coffee_dirs.each do |coffee_dir|
|
20
20
|
js_dir = coffee_dir.sub '/coffee-', '/'
|
21
|
-
output.push `#{@binary} --output #{js_dir} --compile #{coffee_dir} 2>&1`
|
21
|
+
output.push `#{@binary} --output "#{js_dir}" --compile "#{coffee_dir}" 2>&1`
|
22
22
|
end
|
23
23
|
|
24
24
|
return output.join "\n"
|
data/loris.gemspec
CHANGED