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

33 lines
414 B
Ruby
Raw Normal View History

2011-06-17 10:32:50 +00:00
require 'guard'
require 'guard/guard'
module Guard
class RailsAssets < Guard
def initialize(watchers=[], options={})
super
end
def start
# Started
end
def reload
# Ctrl-Z
end
def run_all
# Ctr-\ - restarting stuff
end
def run_on_change(paths)
end
def compile_assets
# clean
# prefix or path
# compile
end
end
end