forked from judgegem/judge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
36 lines (30 loc) · 841 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env rake
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
require_relative 'spec/javascripts/javascript_spec_server'
require 'appraisal'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
load 'rails/tasks/engine.rake'
desc 'Require phantomjs'
task :phantomjs do
sh 'which phantomjs' do |ok, ps|
fail 'phantomjs not found' unless ok
end
end
desc 'Run JavaScript tests'
task :js => [:phantomjs] do
port = 8080
server = JavascriptSpecServer.new(port, './')
server.boot
sh "phantomjs spec/javascripts/run.js #{port}" do |ok, ps|
exit(ps.exitstatus)
end
end
desc 'Run all tests'
task :default => [:spec, :js]
Bundler::GemHelper.install_tasks