2011-05-27 18:41:07 +00:00
require 'guard'
require 'guard/guard'
2011-06-01 14:06:35 +00:00
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
2011-06-01 14:06:35 +00:00
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 ,
2011-07-12 12:59:26 +00:00
:timeout = > 20 ,
2011-08-25 14:26:04 +00:00
:server = > nil ,
:debugger = > nil
2011-06-03 13:18:16 +00:00
}
def initialize ( watchers = [ ] , options = { } )
super
@options = DEFAULT_OPTIONS . merge ( options )
2011-06-01 14:06:35 +00:00
2011-06-01 14:36:12 +00:00
@runner = RailsRunner . new ( @options )
2011-05-27 18:41:07 +00:00
end
def start
2011-07-12 12:59:26 +00:00
server = options [ :server ] ? " #{ options [ :server ] } and " : " "
UI . info " Guard::Rails will now restart your app on port #{ options [ :port ] } using #{ server } #{ 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. "
2011-06-29 13:52:04 +00:00
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 )
2011-06-01 14:06:35 +00:00
runner . stop
2011-05-27 18:41:07 +00:00
end
def run_on_change ( paths )
run_all
end
end
end