52 lines
1.1 KiB
Ruby
52 lines
1.1 KiB
Ruby
require 'guard'
|
|
require 'guard/guard'
|
|
require 'lib/handlebars/ember'
|
|
|
|
module Guard
|
|
class EmberTemplates < Guard
|
|
|
|
DEFAULT_OPTIONS = {
|
|
:hide_success => false,
|
|
:all_on_start => false
|
|
}
|
|
|
|
def initialize(watchers=[], options={})
|
|
super([::Guard::Watcher.new(/(app\/coffeescripts\/ember\/.*.hbs)\z/)], {})
|
|
end
|
|
|
|
def start
|
|
run_all if options[:all_on_start]
|
|
end
|
|
|
|
def run_on_change(paths)
|
|
paths.each do |path|
|
|
begin
|
|
UI.info "Compiling Ember template: #{path}"
|
|
EmberHbs.compile_file path
|
|
rescue Exception => e
|
|
::Guard::Notifier.notify(e.to_s, :title => path, :image => :failed)
|
|
UI.error "Error compiling: #{path}\n#{e}"
|
|
end
|
|
end
|
|
end
|
|
|
|
# Gets called when all files should be regenerated.
|
|
#
|
|
# @raise [:task_has_failed] when stop has failed
|
|
#
|
|
def run_all
|
|
UI.info "Compiling all Ember templates"
|
|
files = Dir.glob("app/coffeescripts/**/*.hbs")
|
|
files.each do |file|
|
|
EmberHbs::compile_file(file)
|
|
end
|
|
end
|
|
|
|
|
|
def run_on_deletion(paths)
|
|
puts "TODO: run_on_deletion not implemented"
|
|
end
|
|
end
|
|
end
|
|
|