guard-rails-assets/lib/guard/rails-assets.rb
2011-06-17 20:32:50 +10:00

33 lines
414 B
Ruby

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