guard-rails/lib/guard/rails.rb

53 lines
1.5 KiB
Ruby
Raw Normal View History

2011-05-27 18:41:07 +00:00
require 'guard'
require 'guard/guard'
require 'guard/rails/runner'
2011-05-31 20:15:19 +00:00
require 'rbconfig'
2011-05-27 18:41:07 +00:00
module Guard
class Rails < ::Guard::Guard
attr_reader :options, :runner
2011-05-27 18:41:07 +00:00
2011-06-03 13:18:16 +00:00
DEFAULT_OPTIONS = {
2011-05-31 20:15:19 +00:00
:port => 3000,
:environment => 'development',
:start_on_start => true,
2011-06-01 14:42:53 +00:00
:force_run => false,
:timeout => 20
2011-06-03 13:18:16 +00:00
}
def initialize(watchers = [], options = {})
super
@options = DEFAULT_OPTIONS.merge(options)
2011-06-01 14:36:12 +00:00
@runner = RailsRunner.new(@options)
2011-05-27 18:41:07 +00:00
end
def start
2011-06-03 13:18:16 +00:00
UI.info "Guard::Rails will now restart your app on port #{options[:port]} using #{options[:environment]} environment."
2011-05-27 18:41:07 +00:00
run_all if options[:start_on_start]
end
def run_all
2011-06-01 14:28:32 +00:00
UI.info "Restarting Rails..."
2011-05-27 19:59:48 +00:00
Notifier.notify("Rails restarting on port #{options[:port]} in #{options[:environment]} environment...", :title => "Restarting Rails...", :image => :pending)
2011-06-01 14:28:32 +00:00
if runner.restart
UI.info "Rails restarted, pid #{runner.pid}"
Notifier.notify("Rails restarted on port #{options[:port]}.", :title => "Rails restarted!", :image => :success)
else
UI.info "Rails NOT restarted, check your log files."
Notifier.notify("Rails NOT restarted, check your log files.", :title => "Rails NOT restarted!", :image => :failed)
2011-06-01 14:28:32 +00:00
end
2011-05-27 18:58:20 +00:00
end
def stop
Notifier.notify("Until next time...", :title => "Rails shutting down.", :image => :pending)
runner.stop
2011-05-27 18:41:07 +00:00
end
def run_on_change(paths)
run_all
end
end
end