aboutsummaryrefslogtreecommitdiffstats
path: root/script
diff options
context:
space:
mode:
Diffstat (limited to 'script')
-rwxr-xr-xscript/about5
-rwxr-xr-xscript/breakpointer5
-rwxr-xr-xscript/console5
-rwxr-xr-xscript/destroy5
-rwxr-xr-xscript/generate5
-rwxr-xr-xscript/performance/benchmarker5
-rwxr-xr-xscript/performance/profiler5
-rwxr-xr-xscript/plugin5
-rwxr-xr-xscript/process/inspector5
-rwxr-xr-xscript/process/reaper5
-rwxr-xr-xscript/process/spawner5
-rwxr-xr-xscript/runner5
-rwxr-xr-xscript/server5
13 files changed, 65 insertions, 0 deletions
diff --git a/script/about b/script/about
new file mode 100755
index 000000000..429f642c5
--- /dev/null
+++ b/script/about
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/about'
diff --git a/script/breakpointer b/script/breakpointer
new file mode 100755
index 000000000..e6a569875
--- /dev/null
+++ b/script/breakpointer
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/breakpointer' \ No newline at end of file
diff --git a/script/console b/script/console
new file mode 100755
index 000000000..94c058b04
--- /dev/null
+++ b/script/console
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/console' \ No newline at end of file
diff --git a/script/destroy b/script/destroy
new file mode 100755
index 000000000..1bce431df
--- /dev/null
+++ b/script/destroy
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/destroy' \ No newline at end of file
diff --git a/script/generate b/script/generate
new file mode 100755
index 000000000..e66e5268c
--- /dev/null
+++ b/script/generate
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/generate' \ No newline at end of file
diff --git a/script/performance/benchmarker b/script/performance/benchmarker
new file mode 100755
index 000000000..bc51e3de2
--- /dev/null
+++ b/script/performance/benchmarker
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../../config/boot'
+require 'commands/performance/benchmarker'
diff --git a/script/performance/profiler b/script/performance/profiler
new file mode 100755
index 000000000..48fb74381
--- /dev/null
+++ b/script/performance/profiler
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../../config/boot'
+require 'commands/performance/profiler'
diff --git a/script/plugin b/script/plugin
new file mode 100755
index 000000000..5d3a97db6
--- /dev/null
+++ b/script/plugin
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/plugin' \ No newline at end of file
diff --git a/script/process/inspector b/script/process/inspector
new file mode 100755
index 000000000..fe7c7d06b
--- /dev/null
+++ b/script/process/inspector
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../../config/boot'
+require 'commands/process/inspector'
diff --git a/script/process/reaper b/script/process/reaper
new file mode 100755
index 000000000..1cc6ada1d
--- /dev/null
+++ b/script/process/reaper
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../../config/boot'
+require 'commands/process/reaper'
diff --git a/script/process/spawner b/script/process/spawner
new file mode 100755
index 000000000..896ce94f5
--- /dev/null
+++ b/script/process/spawner
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../../config/boot'
+require 'commands/process/spawner'
diff --git a/script/runner b/script/runner
new file mode 100755
index 000000000..e5f52ff8e
--- /dev/null
+++ b/script/runner
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/runner' \ No newline at end of file
diff --git a/script/server b/script/server
new file mode 100755
index 000000000..801c2480a
--- /dev/null
+++ b/script/server
@@ -0,0 +1,5 @@
+#!/usr/bin/ruby
+
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/server' \ No newline at end of file