aboutsummaryrefslogtreecommitdiffstats
path: root/railties/bin
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-08-30 20:47:09 +0000
committerJamis Buck <jamis@37signals.com>2005-08-30 20:47:09 +0000
commitbb7f60ca1cd191fd775fef261b4d2bc7af223604 (patch)
treea95b8249660655d6b7e91f8736aad29d8bb6755f /railties/bin
parenta8b9fc9f2ab47e0a853ca3997ae34aee2865dec6 (diff)
downloadrails-bb7f60ca1cd191fd775fef261b4d2bc7af223604.tar.gz
rails-bb7f60ca1cd191fd775fef261b4d2bc7af223604.tar.bz2
rails-bb7f60ca1cd191fd775fef261b4d2bc7af223604.zip
Remove switchtower integration from rails
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2073 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/bin')
-rw-r--r--railties/bin/switchtower15
-rw-r--r--railties/bin/switchtower_for_gem4
2 files changed, 0 insertions, 19 deletions
diff --git a/railties/bin/switchtower b/railties/bin/switchtower
deleted file mode 100644
index 82952a3f20..0000000000
--- a/railties/bin/switchtower
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/local/bin/ruby
-
-VENDOR = File.dirname(__FILE__) + "/../vendor"
-
-$:.unshift "#{VENDOR}/switchtower/lib"
-
-if File.directory?("#{VENDOR}/rails/switchtower")
- $:.unshift "#{VENDOR}/rails/switchtower/lib"
- load "#{VENDOR}/rails/switchtower/bin/switchtower"
-elsif File.directory?("#{VENDOR}/switchtower")
- $:.unshift "#{VENDOR}/switchtower/lib"
- load "#{VENDOR}/switchtower/bin/switchtower"
-elsif not system "switchtower #{ARGV.join(" ")}"
- raise "could not locate switchtower to execute it"
-end
diff --git a/railties/bin/switchtower_for_gem b/railties/bin/switchtower_for_gem
deleted file mode 100644
index 57d79bc06c..0000000000
--- a/railties/bin/switchtower_for_gem
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/usr/local/bin/ruby
-require 'rubygems'
-require_gem 'switchtower'
-load 'switchtower'