Files
jasmine/tasks/jasmine_dev/sources.rb
2012-12-09 09:29:05 -08:00

31 lines
580 B
Ruby

class JasmineDev < Thor
JASMINE_SOURCES = {
:core => [
"base.js",
"util.js",
"ExceptionFormatter.js",
"ExpectationResult.js",
"Env.js",
"Reporter.js",
"JsApiReporter.js",
"Matchers.js",
"MultiReporter.js",
"PrettyPrinter.js",
"Queue.js",
"Runner.js",
"Spec.js",
"Suite.js",
"Clock.js",
"DelayedFunctionScheduler.js"
],
:html => [
"HtmlReporterHelpers.js",
"HtmlReporter.js",
"ReporterView.js",
"SpecView.js",
"SuiteView.js",
]
}
end