aboutsummaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorHeiko Bernloehr <Heiko.Bernloehr@FreeIT.de>2011-01-31 15:00:27 +0100
committerHeiko Bernloehr <Heiko.Bernloehr@FreeIT.de>2011-01-31 15:00:27 +0100
commit6e5a780ba6ca83fd68267b0cc40f8943eb267827 (patch)
tree2f3aa64f2a1382284eedb6be71811d7dcb52470c /script
downloadecs2-6e5a780ba6ca83fd68267b0cc40f8943eb267827.tar.gz
ecs2-6e5a780ba6ca83fd68267b0cc40f8943eb267827.zip
Initial commit.
Diffstat (limited to 'script')
-rwxr-xr-xscript/about4
-rwxr-xr-xscript/console3
-rwxr-xr-xscript/dbconsole3
-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/runner3
-rwxr-xr-xscript/server3
10 files changed, 31 insertions, 0 deletions
diff --git a/script/about b/script/about
new file mode 100755
index 0000000..1eeb6eb
--- /dev/null
+++ b/script/about
@@ -0,0 +1,4 @@
+#!/usr/bin/env ruby
+require File.expand_path('../../config/boot', __FILE__)
+$LOAD_PATH.unshift "#{RAILTIES_PATH}/builtin/rails_info"
+require 'commands/about'
diff --git a/script/console b/script/console
new file mode 100755
index 0000000..235a1f2
--- /dev/null
+++ b/script/console
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.expand_path('../../config/boot', __FILE__)
+require 'commands/console'
diff --git a/script/dbconsole b/script/dbconsole
new file mode 100755
index 0000000..83c8436
--- /dev/null
+++ b/script/dbconsole
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.expand_path('../../config/boot', __FILE__)
+require 'commands/dbconsole'
diff --git a/script/destroy b/script/destroy
new file mode 100755
index 0000000..88d295f
--- /dev/null
+++ b/script/destroy
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.expand_path('../../config/boot', __FILE__)
+require 'commands/destroy'
diff --git a/script/generate b/script/generate
new file mode 100755
index 0000000..62a8a4c
--- /dev/null
+++ b/script/generate
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.expand_path('../../config/boot', __FILE__)
+require 'commands/generate'
diff --git a/script/performance/benchmarker b/script/performance/benchmarker
new file mode 100755
index 0000000..3bff809
--- /dev/null
+++ b/script/performance/benchmarker
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.expand_path('../../../config/boot', __FILE__)
+require 'commands/performance/benchmarker'
diff --git a/script/performance/profiler b/script/performance/profiler
new file mode 100755
index 0000000..0764057
--- /dev/null
+++ b/script/performance/profiler
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.expand_path('../../../config/boot', __FILE__)
+require 'commands/performance/profiler'
diff --git a/script/plugin b/script/plugin
new file mode 100755
index 0000000..b82201f
--- /dev/null
+++ b/script/plugin
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.expand_path('../../config/boot', __FILE__)
+require 'commands/plugin'
diff --git a/script/runner b/script/runner
new file mode 100755
index 0000000..be4c5d4
--- /dev/null
+++ b/script/runner
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.expand_path('../../config/boot', __FILE__)
+require 'commands/runner'
diff --git a/script/server b/script/server
new file mode 100755
index 0000000..b9fcb71
--- /dev/null
+++ b/script/server
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+require File.expand_path('../../config/boot', __FILE__)
+require 'commands/server'