guard-jasmine-headless-webkit/lib/guard/jasmine-headless-webkit.rb

83 lines
1.9 KiB
Ruby
Raw Normal View History

2011-05-23 22:37:19 +00:00
require 'guard'
require 'guard/guard'
2011-05-24 01:28:01 +00:00
require 'guard/jasmine-headless-webkit/runner'
2011-05-23 22:37:19 +00:00
module Guard
class JasmineHeadlessWebkit < Guard
DEFAULT_EXTENSIONS = %w{js coffee}
2011-05-24 00:44:18 +00:00
def initialize(watchers = [], options = {})
super
@options = {
:all_on_start => true,
:run_before => false,
:valid_extensions => DEFAULT_EXTENSIONS
2011-05-24 00:44:18 +00:00
}.merge(options)
end
2011-05-23 22:37:19 +00:00
def start
UI.info "Guard::JasmineHeadlessWebkit is running."
2011-05-24 00:44:18 +00:00
run_all if @options[:all_on_start]
2011-05-23 22:37:19 +00:00
end
def run_all
2011-06-10 15:50:25 +00:00
UI.info "Guard::JasmineHeadlessWebkit running all specs..."
JasmineHeadlessWebkitRunner.run if run_before and run_jammit
@ran_jammit = false
2011-05-23 22:37:19 +00:00
end
def run_on_change(paths)
paths = filter_paths(paths)
@ran_jammit = false
if run_before and run_jammit
@ran_jammit = true
2011-06-03 20:25:00 +00:00
if !paths.empty?
2011-06-10 15:50:25 +00:00
UI.info "Guard::JasmineHeadlessWebkit running the following: #{paths.join(' ')}"
JasmineHeadlessWebkitRunner.run(paths)
else
run_all
2011-06-03 20:25:00 +00:00
end
end
end
private
def filter_paths(paths)
paths.find_all { |path| File.extname(path)[valid_extensions] }
end
def valid_extensions
%r{\.(#{@options[:valid_extensions].join('|')})$}
end
def run_before
if @options[:run_before]
run_program(@options[:run_before])
else
true
end
2011-05-23 22:37:19 +00:00
end
def run_jammit
if @options[:jammit] && !@ran_jammit
run_program("Jammit", %{jammit -f 2>/dev/null})
else
true
end
end
def run_program(name, command = nil)
command ||= name
UI.info "Guard::JasmineHeadlessWebkit running #{name}..."
system command
$?.exitstatus == 0
end
2011-05-23 22:37:19 +00:00
end
2011-05-24 00:59:20 +00:00
class Dsl
def newest_js_file(path)
2011-05-23 22:37:19 +00:00
Dir[path + '*.{js,coffee}'].sort { |left, right| File.mtime(right) <=> File.mtime(left) }.first
end
end
end