Created
January 24, 2012 21:27
-
-
Save vertis/1672812 to your computer and use it in GitHub Desktop.
Simple script that can be used to rename a rails3 app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'fileutils' | |
require 'tempfile' | |
def replace_in_file(filename,oldvalue,newvalue) | |
temp_file = Tempfile.new(File.basename(filename)) | |
contents = File.read(filename) | |
changed_contents = contents.gsub(oldvalue,newvalue).gsub(oldvalue.downcase,newvalue.downcase) | |
temp_file.print(changed_contents) | |
temp_file.close | |
FileUtils.mv(temp_file.path, filename) | |
end | |
if ARGV.count!=2 | |
puts "Usage: rename_rails3 <Oldname> <Newname>" | |
exit 1 | |
end | |
oldname = ARGV[0] | |
newname = ARGV[1] | |
other_files = [".rvmrc", "config.ru", "Rakefile"].select {|other| File.exists?(other) } | |
targets = Dir['**/*.{erb,haml,rb,sh,yml}'] + other_files | |
targets.each do |target| | |
puts target | |
replace_in_file(target,oldname,newname) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment