diff options
| author | hukl <hukl@eight.local> | 2009-01-29 20:41:18 +0100 |
|---|---|---|
| committer | hukl <hukl@eight.local> | 2009-01-29 20:41:18 +0100 |
| commit | b298d3e8eeb10903bd4640dab7c11d0dc1be9d38 (patch) | |
| tree | d8d0a8449972a46e551be3b94e7dd02b6107b119 /script | |
initial import with edge rails included as a submodule
Diffstat (limited to 'script')
| -rwxr-xr-x | script/about | 4 | ||||
| -rwxr-xr-x | script/console | 3 | ||||
| -rwxr-xr-x | script/dbconsole | 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/runner | 3 | ||||
| -rwxr-xr-x | script/server | 3 |
10 files changed, 31 insertions, 0 deletions
diff --git a/script/about b/script/about new file mode 100755 index 0000000..ed8deb0 --- /dev/null +++ b/script/about | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #!/usr/bin/env ruby | ||
| 2 | require File.dirname(__FILE__) + '/../config/boot' | ||
| 3 | $LOAD_PATH.unshift "#{RAILTIES_PATH}/builtin/rails_info" | ||
| 4 | require 'commands/about' \ No newline at end of file | ||
diff --git a/script/console b/script/console new file mode 100755 index 0000000..498077a --- /dev/null +++ b/script/console | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #!/usr/bin/env ruby | ||
| 2 | require File.dirname(__FILE__) + '/../config/boot' | ||
| 3 | require 'commands/console' | ||
diff --git a/script/dbconsole b/script/dbconsole new file mode 100755 index 0000000..caa60ce --- /dev/null +++ b/script/dbconsole | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #!/usr/bin/env ruby | ||
| 2 | require File.dirname(__FILE__) + '/../config/boot' | ||
| 3 | require 'commands/dbconsole' | ||
diff --git a/script/destroy b/script/destroy new file mode 100755 index 0000000..a4df765 --- /dev/null +++ b/script/destroy | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #!/usr/bin/env ruby | ||
| 2 | require File.dirname(__FILE__) + '/../config/boot' | ||
| 3 | require 'commands/destroy' | ||
diff --git a/script/generate b/script/generate new file mode 100755 index 0000000..173a9f1 --- /dev/null +++ b/script/generate | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #!/usr/bin/env ruby | ||
| 2 | require File.dirname(__FILE__) + '/../config/boot' | ||
| 3 | require 'commands/generate' | ||
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 @@ | |||
| 1 | #!/usr/bin/env ruby | ||
| 2 | require File.dirname(__FILE__) + '/../../config/boot' | ||
| 3 | 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 @@ | |||
| 1 | #!/usr/bin/env ruby | ||
| 2 | require File.dirname(__FILE__) + '/../../config/boot' | ||
| 3 | require 'commands/performance/profiler' | ||
diff --git a/script/plugin b/script/plugin new file mode 100755 index 0000000..87cd207 --- /dev/null +++ b/script/plugin | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #!/usr/bin/env ruby | ||
| 2 | require File.dirname(__FILE__) + '/../config/boot' | ||
| 3 | require 'commands/plugin' | ||
diff --git a/script/runner b/script/runner new file mode 100755 index 0000000..a4a7cb2 --- /dev/null +++ b/script/runner | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #!/usr/bin/env ruby | ||
| 2 | require File.dirname(__FILE__) + '/../config/boot' | ||
| 3 | require 'commands/runner' | ||
diff --git a/script/server b/script/server new file mode 100755 index 0000000..3c67f39 --- /dev/null +++ b/script/server | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #!/usr/bin/env ruby | ||
| 2 | require File.dirname(__FILE__) + '/../config/boot' | ||
| 3 | require 'commands/server' | ||
