summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorNicolas Braud-Santoni <nicoo@ffgraz.net>2016-08-07 16:39:42 +0200
committerNicolas Braud-Santoni <nicoo@ffgraz.net>2016-08-07 16:39:42 +0200
commitb6ca062670b342344df08b53fb216db619ef42bc (patch)
tree7680ac6b407239f6b7272c937e42f688b8de542c /script
Import legacy manman source
Copied from www.ffgraz.net
Diffstat (limited to 'script')
-rwxr-xr-xscript/about3
-rwxr-xr-xscript/breakpointer3
-rwxr-xr-xscript/console3
-rwxr-xr-xscript/destroy3
-rwxr-xr-xscript/generate3
-rwxr-xr-xscript/performance/benchmarker3
-rwxr-xr-xscript/performance/profiler3
-rwxr-xr-xscript/plugin3
-rwxr-xr-xscript/process/reaper3
-rwxr-xr-xscript/process/spawner3
-rwxr-xr-xscript/runner3
-rwxr-xr-xscript/server3
12 files changed, 36 insertions, 0 deletions
diff --git a/script/about b/script/about
new file mode 100755
index 0000000..7b07d46
--- /dev/null
+++ b/script/about
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/about' \ No newline at end of file
diff --git a/script/breakpointer b/script/breakpointer
new file mode 100755
index 0000000..64af76e
--- /dev/null
+++ b/script/breakpointer
@@ -0,0 +1,3 @@
+#!/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 0000000..42f28f7
--- /dev/null
+++ b/script/console
@@ -0,0 +1,3 @@
+#!/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 0000000..fa0e6fc
--- /dev/null
+++ b/script/destroy
@@ -0,0 +1,3 @@
+#!/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 0000000..ef976e0
--- /dev/null
+++ b/script/generate
@@ -0,0 +1,3 @@
+#!/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 0000000..c842d35
--- /dev/null
+++ b/script/performance/benchmarker
@@ -0,0 +1,3 @@
+#!/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 0000000..d855ac8
--- /dev/null
+++ b/script/performance/profiler
@@ -0,0 +1,3 @@
+#!/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 0000000..26ca64c
--- /dev/null
+++ b/script/plugin
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/plugin' \ No newline at end of file
diff --git a/script/process/reaper b/script/process/reaper
new file mode 100755
index 0000000..c77f045
--- /dev/null
+++ b/script/process/reaper
@@ -0,0 +1,3 @@
+#!/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 0000000..7118f39
--- /dev/null
+++ b/script/process/spawner
@@ -0,0 +1,3 @@
+#!/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 0000000..ccc30f9
--- /dev/null
+++ b/script/runner
@@ -0,0 +1,3 @@
+#!/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 0000000..dfabcb8
--- /dev/null
+++ b/script/server
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.dirname(__FILE__) + '/../config/boot'
+require 'commands/server' \ No newline at end of file