aboutsummaryrefslogtreecommitdiffstats
path: root/railties/bin
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-10-14 18:58:07 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-10-14 18:58:07 +0000
commit00656979fed99d4d16eefc795067a576ab1a1a91 (patch)
treef26ccc6c445e3a8432ca6f589be64d53cb32645f /railties/bin
parent32021552125544d7cc2f548b1684a9f476845d58 (diff)
downloadrails-00656979fed99d4d16eefc795067a576ab1a1a91.tar.gz
rails-00656979fed99d4d16eefc795067a576ab1a1a91.tar.bz2
rails-00656979fed99d4d16eefc795067a576ab1a1a91.zip
r3619@sedna: jeremy | 2005-10-14 14:41:24 -0700
move scripts r3622@sedna: jeremy | 2005-10-14 14:54:48 -0700 remove script/perform and script/process in favor of script/perform/profile, etc. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2587 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/bin')
-rw-r--r--railties/bin/perform3
-rw-r--r--railties/bin/perform/benchmark3
-rw-r--r--railties/bin/perform/profile3
-rw-r--r--railties/bin/process3
-rw-r--r--railties/bin/process/reaper3
-rw-r--r--railties/bin/process/spawner3
-rw-r--r--railties/bin/process/spinner3
7 files changed, 15 insertions, 6 deletions
diff --git a/railties/bin/perform b/railties/bin/perform
deleted file mode 100644
index 5eb8ab0f87..0000000000
--- a/railties/bin/perform
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/local/bin/ruby
-require File.dirname(__FILE__) + '/../config/boot'
-require 'commands/perform' \ No newline at end of file
diff --git a/railties/bin/perform/benchmark b/railties/bin/perform/benchmark
new file mode 100644
index 0000000000..c787fae8ad
--- /dev/null
+++ b/railties/bin/perform/benchmark
@@ -0,0 +1,3 @@
+#!/usr/local/bin/ruby
+require File.dirname(__FILE__) + '/../../config/boot'
+require 'commands/perform/benchmark'
diff --git a/railties/bin/perform/profile b/railties/bin/perform/profile
new file mode 100644
index 0000000000..743262e56c
--- /dev/null
+++ b/railties/bin/perform/profile
@@ -0,0 +1,3 @@
+#!/usr/local/bin/ruby
+require File.dirname(__FILE__) + '/../../config/boot'
+require 'commands/perform/profile'
diff --git a/railties/bin/process b/railties/bin/process
deleted file mode 100644
index 13df54f90f..0000000000
--- a/railties/bin/process
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/local/bin/ruby
-require File.dirname(__FILE__) + '/../config/boot'
-require 'commands/process' \ No newline at end of file
diff --git a/railties/bin/process/reaper b/railties/bin/process/reaper
new file mode 100644
index 0000000000..3bcfb48347
--- /dev/null
+++ b/railties/bin/process/reaper
@@ -0,0 +1,3 @@
+#!/usr/local/bin/ruby
+require File.dirname(__FILE__) + '/../../config/boot'
+require 'commands/process/reaper'
diff --git a/railties/bin/process/spawner b/railties/bin/process/spawner
new file mode 100644
index 0000000000..73a98128eb
--- /dev/null
+++ b/railties/bin/process/spawner
@@ -0,0 +1,3 @@
+#!/usr/local/bin/ruby
+require File.dirname(__FILE__) + '/../../config/boot'
+require 'commands/process/spawner'
diff --git a/railties/bin/process/spinner b/railties/bin/process/spinner
new file mode 100644
index 0000000000..0b546dd0a3
--- /dev/null
+++ b/railties/bin/process/spinner
@@ -0,0 +1,3 @@
+#!/usr/local/bin/ruby
+require File.dirname(__FILE__) + '/../../config/boot'
+require 'commands/process/spinner'