Rakefile in falcon-0.18.13 vs Rakefile in falcon-0.18.14

- old
+ new

@@ -3,10 +3,13 @@ RSpec::Core::RakeTask.new(:test) task :default => :test +# Load all rake tasks: +import(*Dir.glob('tasks/**/*.rake')) + task :server do require 'async/reactor' require 'async/http/server' app = lambda do |env| @@ -66,6 +69,7 @@ pids.each do |pid| Process.kill(:KILL, pid) Process.wait pid end -end \ No newline at end of file +end +