diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-10-06 02:05:36 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-10-06 02:05:36 +0000 |
commit | a9f34eaa0f07a56a2de674cb5ec604a722e67310 (patch) | |
tree | 330bac51ea5442db70b46acca89df997ef073604 /railties/bin | |
parent | eb54de9992dedfcc6b42613a06480af4d0783bf0 (diff) | |
download | rails-a9f34eaa0f07a56a2de674cb5ec604a722e67310.tar.gz rails-a9f34eaa0f07a56a2de674cb5ec604a722e67310.tar.bz2 rails-a9f34eaa0f07a56a2de674cb5ec604a722e67310.zip |
Backed out of script/run portal idea. Muscle memory too deep
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2469 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/bin')
-rw-r--r-- | railties/bin/breakpointer | 3 | ||||
-rw-r--r-- | railties/bin/console | 3 | ||||
-rw-r--r-- | railties/bin/destroy | 3 | ||||
-rw-r--r-- | railties/bin/generate | 3 | ||||
-rw-r--r-- | railties/bin/perform | 3 | ||||
-rw-r--r-- | railties/bin/process | 3 | ||||
-rw-r--r--[-rwxr-xr-x] | railties/bin/runner (renamed from railties/bin/run) | 2 | ||||
-rw-r--r-- | railties/bin/server | 3 |
8 files changed, 22 insertions, 1 deletions
diff --git a/railties/bin/breakpointer b/railties/bin/breakpointer new file mode 100644 index 0000000000..2918f8c152 --- /dev/null +++ b/railties/bin/breakpointer @@ -0,0 +1,3 @@ +#!/usr/local/bin/ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/breakpointer'
\ No newline at end of file diff --git a/railties/bin/console b/railties/bin/console new file mode 100644 index 0000000000..f2143e5719 --- /dev/null +++ b/railties/bin/console @@ -0,0 +1,3 @@ +#!/usr/local/bin/ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/console'
\ No newline at end of file diff --git a/railties/bin/destroy b/railties/bin/destroy new file mode 100644 index 0000000000..c2799bd20d --- /dev/null +++ b/railties/bin/destroy @@ -0,0 +1,3 @@ +#!/usr/local/bin/ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/destroy'
\ No newline at end of file diff --git a/railties/bin/generate b/railties/bin/generate new file mode 100644 index 0000000000..d8a1599870 --- /dev/null +++ b/railties/bin/generate @@ -0,0 +1,3 @@ +#!/usr/local/bin/ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/generate'
\ No newline at end of file diff --git a/railties/bin/perform b/railties/bin/perform new file mode 100644 index 0000000000..5eb8ab0f87 --- /dev/null +++ b/railties/bin/perform @@ -0,0 +1,3 @@ +#!/usr/local/bin/ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/perform'
\ No newline at end of file diff --git a/railties/bin/process b/railties/bin/process new file mode 100644 index 0000000000..13df54f90f --- /dev/null +++ b/railties/bin/process @@ -0,0 +1,3 @@ +#!/usr/local/bin/ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/process'
\ No newline at end of file diff --git a/railties/bin/run b/railties/bin/runner index 5490bc9336..cd2496d6a0 100755..100644 --- a/railties/bin/run +++ b/railties/bin/runner @@ -1,3 +1,3 @@ #!/usr/local/bin/ruby require File.dirname(__FILE__) + '/../config/boot' -require "commands"
\ No newline at end of file +require 'commands/runner'
\ No newline at end of file diff --git a/railties/bin/server b/railties/bin/server new file mode 100644 index 0000000000..59d8259788 --- /dev/null +++ b/railties/bin/server @@ -0,0 +1,3 @@ +#!/usr/local/bin/ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/server'
\ No newline at end of file |