Merge branch 'travis-node-test'

This commit is contained in:
kpdecker
2013-01-13 17:44:24 -06:00
2 changed files with 11 additions and 4 deletions
+10 -4
View File
@@ -2,7 +2,7 @@ require "rubygems"
require "bundler/setup"
def compile_parser
system "./node_modules/jison/lib/jison/cli-wrapper.js -m js src/handlebars.yy src/handlebars.l"
system "./node_modules/.bin/jison -m js src/handlebars.yy src/handlebars.l"
if $?.success?
File.open("lib/handlebars/compiler/parser.js", "w") do |file|
file.puts File.read("src/parser-prefix.js") + File.read("handlebars.js") + File.read("src/parser-suffix.js")
@@ -15,11 +15,11 @@ def compile_parser
end
file "lib/handlebars/compiler/parser.js" => ["src/handlebars.yy","src/handlebars.l"] do
if File.exists?('./node_modules/jison/lib/jison/cli-wrapper.js')
if File.exists?('./node_modules/jison')
compile_parser
else
puts "Jison is not installed. Trying `npm install jison`."
sh "npm install jison"
sh "npm install"
compile_parser
end
end
@@ -32,7 +32,13 @@ task :spec => [:release] do
fail "rspec spec failed with exit code #{$?.exitstatus}" if (rc.nil? || ! rc || $?.exitstatus != 0)
end
task :default => [:compile, :spec]
desc "run the npm test suite"
task :npm_test => [:release] do
rc = system "npm test"
fail "npm test failed with exit code #{$?.exitstatus}" if (rc.nil? || ! rc || $?.exitstatus != 0)
end
task :default => [:compile, :spec, :npm_test]
def remove_exports(string)
match = string.match(%r{^// BEGIN\(BROWSER\)\n(.*)\n^// END\(BROWSER\)}m)
+1
View File
@@ -18,6 +18,7 @@
"uglify-js": "~1.2"
},
"devDependencies": {
"jison": "~0.3",
"mocha": "*"
},
"main": "lib/handlebars.js",