diff options
-rwxr-xr-x | script/performance/benchmarker | 2 | ||||
-rwxr-xr-x | script/performance/profiler | 2 | ||||
-rwxr-xr-x | script/performance/request | 2 | ||||
-rwxr-xr-x | script/process/inspector | 2 | ||||
-rwxr-xr-x | script/process/reaper | 2 | ||||
-rwxr-xr-x | script/process/spawner | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/script/performance/benchmarker b/script/performance/benchmarker index bc51e3de2..c2441c941 100755 --- a/script/performance/benchmarker +++ b/script/performance/benchmarker @@ -1,5 +1,5 @@ #!/usr/bin/ruby #!/usr/bin/env ruby -require File.dirname(__FILE__) + '/../../config/boot' +require File.dirname(__FILE__) + '/../../config/boot.rb' require 'commands/performance/benchmarker' diff --git a/script/performance/profiler b/script/performance/profiler index 48fb74381..a7ea37a9a 100755 --- a/script/performance/profiler +++ b/script/performance/profiler @@ -1,5 +1,5 @@ #!/usr/bin/ruby #!/usr/bin/env ruby -require File.dirname(__FILE__) + '/../../config/boot' +require File.dirname(__FILE__) + '/../../config/boot.rb' require 'commands/performance/profiler' diff --git a/script/performance/request b/script/performance/request index ae3f38c74..658c80ef2 100755 --- a/script/performance/request +++ b/script/performance/request @@ -1,3 +1,3 @@ #!/usr/bin/env ruby -require File.dirname(__FILE__) + '/../../config/boot' +require File.dirname(__FILE__) + '/../../config/boot.rb' require 'commands/performance/request' diff --git a/script/process/inspector b/script/process/inspector index fe7c7d06b..261317109 100755 --- a/script/process/inspector +++ b/script/process/inspector @@ -1,5 +1,5 @@ #!/usr/bin/ruby #!/usr/bin/env ruby -require File.dirname(__FILE__) + '/../../config/boot' +require File.dirname(__FILE__) + '/../../config/boot.rb' require 'commands/process/inspector' diff --git a/script/process/reaper b/script/process/reaper index 1cc6ada1d..309764a0d 100755 --- a/script/process/reaper +++ b/script/process/reaper @@ -1,5 +1,5 @@ #!/usr/bin/ruby #!/usr/bin/env ruby -require File.dirname(__FILE__) + '/../../config/boot' +require File.dirname(__FILE__) + '/../../config/boot.rb' require 'commands/process/reaper' diff --git a/script/process/spawner b/script/process/spawner index 896ce94f5..2768db7fd 100755 --- a/script/process/spawner +++ b/script/process/spawner @@ -1,5 +1,5 @@ #!/usr/bin/ruby #!/usr/bin/env ruby -require File.dirname(__FILE__) + '/../../config/boot' +require File.dirname(__FILE__) + '/../../config/boot.rb' require 'commands/process/spawner' |