Sha256: a2434f9a3c4aa9d207cfc3e6c1f6ccf7ee1ebd596358bb5388ff2d60ba95d78e
Contents?: true
Size: 483 Bytes
Versions: 25
Compression:
Stored size: 483 Bytes
Contents
namespace :fcsh do desc "Start the FCSHD process (or use air:fcshd)" task :start do puts "Starting FCSHD..." PatternPark::FCSHD.start_from_rake(ENV) end desc "Stop the FCSHD process" task :stop do begin fcsh = PatternPark::FCSH.new_from_rake(ENV) fcsh.stop rescue puts "Could not stop FCSHD" end end desc "Restart the FCSHD process" task :restart => [ :stop, :sleep, :start ] task :sleep do sleep 2 end end
Version data entries
25 entries across 25 versions & 1 rubygems