Kill tasks

This commit is contained in:
ragaskar 2009-11-25 19:55:50 -08:00
parent 7b1de037f8
commit 772d9ed697
1 changed files with 0 additions and 32 deletions

View File

@ -1,32 +0,0 @@
require File.expand_path(File.join(File.dirname(__FILE__), "..", "lib", "jasmine_helper.rb"))
def start_jasmine_server
require File.expand_path(File.join(JasmineHelper.root, "contrib/ruby/jasmine_spec_builder"))
puts "your tests are here:"
puts " http://localhost:8888/run.html"
Jasmine::SimpleServer.start(8888,
lambda { JasmineHelper.spec_file_urls },
JasmineHelper.dir_mappings,
:spec_helpers => lambda { JasmineHelper.spec_helpers })
end
namespace :jasmine do
desc "Start jasmine server"
task :server do
start_jasmine_server
end
desc "Run continuous integration tests"
task :ci do
require "spec"
require 'spec/rake/spectask'
ENV["RAILS_ROOT"] = RAILS_ROOT
Spec::Rake::SpecTask.new(:lambda_ci) do |t|
t.spec_opts = ["--color", "--format", "specdoc"]
t.spec_files = [File.expand_path(File.join(File.dirname(__FILE__), "..", "lib", "jasmine_spec.rb"))]
end
Rake::Task[:lambda_ci].invoke
end
end