From 7c1c24f899ba55f01f4152e37fbd1b8ae044c1b3 Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Thu, 8 Sep 2011 11:54:07 -0500 Subject: moved from Posix::Span to Process.span, fixing #46 --- Rakefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Rakefile b/Rakefile index 3d49fce3..5be79101 100644 --- a/Rakefile +++ b/Rakefile @@ -56,8 +56,8 @@ desc "Watch the site and regenerate when it changes" task :watch do raise "### You haven't set anything up yet. First run `rake install` to set up an Octopress theme." unless File.directory?(source_dir) puts "Starting to watch source with Jekyll and Compass." - jekyllPid = spawn("jekyll --auto") - compassPid = spawn("compass watch") + jekyllPid = Process.spawn("jekyll --auto") + compassPid = Process.spawn("compass watch") trap("INT") { Process.kill(9, jekyllPid) @@ -72,9 +72,9 @@ desc "preview the site in a web browser" task :preview do raise "### You haven't set anything up yet. First run `rake install` to set up an Octopress theme." unless File.directory?(source_dir) puts "Starting to watch source with Jekyll and Compass. Starting Rack on port #{server_port}" - jekyllPid = spawn("jekyll --auto") - compassPid = spawn("compass watch") - rackupPid = spawn("rackup --port #{server_port}") + jekyllPid = Process.spawn("jekyll --auto") + compassPid = Process.spawn("compass watch") + rackupPid = Process.spawn("rackup --port #{server_port}") trap("INT") { Process.kill(9, jekyllPid) -- cgit v1.2.1