diff options
author | Joachim Filip Ignacy Bartosik <jbartosik@gmail.com> | 2010-05-14 20:42:18 +0200 |
---|---|---|
committer | Joachim Filip Ignacy Bartosik <jbartosik@gmail.com> | 2010-05-18 15:40:15 +0200 |
commit | 74c019113f57e6b0a99dd24f0bc07397ed5d10ff (patch) | |
tree | 1992dc887b7de69fd365d1430c3c71c26858dc06 /script | |
download | recruiting-webapp-74c019113f57e6b0a99dd24f0bc07397ed5d10ff.tar.gz recruiting-webapp-74c019113f57e6b0a99dd24f0bc07397ed5d10ff.tar.bz2 recruiting-webapp-74c019113f57e6b0a99dd24f0bc07397ed5d10ff.zip |
Initial commit - web app created by `hobo`, .gitignore, README.
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..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' |