guard-rails-assets/lib/guard/rails-assets.rb

60 lines
1.2 KiB
Ruby
Raw Normal View History

2011-06-17 10:32:50 +00:00
require 'guard'
require 'guard/guard'
require 'rake/dsl_definition'
2011-06-17 10:32:50 +00:00
module Guard
class RailsAssets < Guard
def initialize(watchers=[], options={})
super
2011-06-17 12:14:17 +00:00
@options = options || {}
2011-06-17 10:32:50 +00:00
end
def create_rails_runner
@rails_runner = RailsRunner.new
end
def rails_runner
@rails_runner ||= create_rails_runner
end
2011-06-17 10:32:50 +00:00
def start
create_rails_runner
2011-06-17 12:14:17 +00:00
compile_assets if run_for? :start
2011-06-17 10:32:50 +00:00
end
def reload
rails_runner.restart_rails
2011-06-17 12:14:17 +00:00
compile_assets if run_for? :reload
2011-06-17 10:32:50 +00:00
end
def run_all
2011-06-17 12:14:17 +00:00
compile_assets if run_for? :all
2011-06-17 10:32:50 +00:00
end
2011-06-17 12:14:17 +00:00
def run_on_change(paths=[])
compile_assets if run_for? :change
2011-06-17 10:32:50 +00:00
end
def compile_assets
2011-06-17 13:23:04 +00:00
puts 'Compiling rails assets'
result = rails_runner.compile_assets
2011-06-17 12:14:17 +00:00
if result
Notifier::notify 'Assets compiled'
2011-06-17 12:14:17 +00:00
else
Notifier::notify 'see the details in the terminal', :title => "Can't compile assets", :image => :failed
end
2011-06-17 10:32:50 +00:00
end
2011-06-17 12:14:17 +00:00
def run_for? command
run_on = @options[:run_on]
run_on = [:start, :change] if not run_on or run_on.to_s.empty?
2011-06-17 13:23:04 +00:00
run_on = [run_on] unless run_on.respond_to?(:include?)
2011-06-17 12:14:17 +00:00
run_on.include?(command)
end
2011-06-17 10:32:50 +00:00
end
end
require 'guard/rails-assets/rails_runner'