guard-rails-assets/lib/guard/rails-assets.rb
James A. Rosen 8424beee1e obey config.assets.prefix. Closes #1. Closes #2.
Instead of doing an `rm -rf`, rely on `rake assets:clean`, which already
obeys the setting. Unfortunately, the call to figure out the count of assets
compiled would still need to have a directory specified. Thus, it's been
removed. Less information, but the compilation still works fine.
2011-06-19 14:06:23 -07:00

47 lines
1.0 KiB
Ruby

require 'guard'
require 'guard/guard'
module Guard
class RailsAssets < Guard
def initialize(watchers=[], options={})
super
@options = options || {}
end
def start
compile_assets if run_for? :start
end
def reload
compile_assets if run_for? :reload
end
def run_all
compile_assets if run_for? :all
end
def run_on_change(paths=[])
compile_assets if run_for? :change
end
def compile_assets
puts 'Compiling rails assets'
result = system "bundle exec rake assets:clean assets:precompile"
if result
Notifier::notify 'Assets compiled'
else
Notifier::notify 'see the details in the terminal', :title => "Can't compile assets", :image => :failed
end
end
private
def run_for? command
run_on = @options[:run_on]
run_on = [:start, :all, :change] if not run_on or run_on.empty?
run_on = [run_on] unless run_on.respond_to?(:include?)
run_on.include?(command)
end
end
end