Sha256: 67124b113e407fb91abf05709108e4b9e8ccef12f24f955595cb591de104ce13
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 KB
Contents
task :default => :test desc "Run the tests" task :test do sh "ruby #{Dir['test/unit/*_test.rb'].join(' ')}" end # HeadlessSquirrel::Rake::Runner.new :regression do |t| # t.files = Dir['test/regression/prototype/unit/*.html'] # end desc "Run all the regression tests" task :ci do sh "./bin/jstest #{Dir['test/regression/**/unit/*_test.html'].join(' ')}" end namespace :ci do desc "Run the prototype regression tests" task :prototype do sh "./bin/jstest #{Dir['test/regression/prototype/unit/*_test.html'].join(' ')}" end desc "Run the scriptaculous regression tests" task :scriptaculous do sh "./bin/jstest #{Dir['test/regression/scriptaculous/unit/*_test.html'].join(' ')}" end end begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "headless-squirrel" gemspec.summary = "A command-line JavaScript test runner for the Mac." gemspec.description = "A OS X command line tool to run JavaScript (Prototype) unit tests from the comfort of your terminal." gemspec.homepage = "http://github.com/Fingertips/headless-squirrel/tree/master" gemspec.email = "eloy.de.enige@gmail.com" gemspec.authors = ["Eloy Duran"] end rescue LoadError end begin require 'jewelry_portfolio/tasks' JewelryPortfolio::Tasks.new do |p| p.account = 'Fingertips' end rescue LoadError end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
Fingertips-headless-squirrel-0.4.0 | Rakefile |