Removed TermAnsiColor gem (uses GPL and isn't needed anymore)

This commit is contained in:
Davis W. Frank
2012-04-01 10:51:04 -07:00
parent 626da5a112
commit 674197aef8
4 changed files with 2 additions and 8 deletions

View File

@@ -12,7 +12,7 @@ class JasmineDev < Thor
say "Running all appropriate specs via Node.js...", :cyan
with_color_option = Term::ANSIColor.coloring? ? "--color" : "--noColor"
with_color_option = STDOUT.isatty ? "--color" : "--noColor"
run_with_output "node spec/node_suite.js #{with_color_option}", :capture => true
end