diff options
author | Nicolas Braud-Santoni <nicoo@ffgraz.net> | 2016-08-07 16:39:42 +0200 |
---|---|---|
committer | Nicolas Braud-Santoni <nicoo@ffgraz.net> | 2016-08-07 16:39:42 +0200 |
commit | b6ca062670b342344df08b53fb216db619ef42bc (patch) | |
tree | 7680ac6b407239f6b7272c937e42f688b8de542c /script |
Import legacy manman source
Copied from www.ffgraz.net
Diffstat (limited to 'script')
-rwxr-xr-x | script/about | 3 | ||||
-rwxr-xr-x | script/breakpointer | 3 | ||||
-rwxr-xr-x | script/console | 3 | ||||
-rwxr-xr-x | script/destroy | 3 | ||||
-rwxr-xr-x | script/generate | 3 | ||||
-rwxr-xr-x | script/performance/benchmarker | 3 | ||||
-rwxr-xr-x | script/performance/profiler | 3 | ||||
-rwxr-xr-x | script/plugin | 3 | ||||
-rwxr-xr-x | script/process/reaper | 3 | ||||
-rwxr-xr-x | script/process/spawner | 3 | ||||
-rwxr-xr-x | script/runner | 3 | ||||
-rwxr-xr-x | script/server | 3 |
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 |