How to change your project name in ruby on rails ?
while u create a project name of project is scattered in below files
In Rails 3, there are references to the application name in the following files:
config/application.rb
config/environment.rb
config/environments/development.rb
config/environments/production.rb
config/environments/test.rb
config/initializers/secret_token.rb
config/initializers/session_store.rb
config/mongoid.yml (if using Mongoid)
config/routes.rb
config.ru
Rakefile
app/views/layouts/application.html.erb, in title tag
Is there any command to replace the name of project in all these files?
For this follow links below
http://gkunwar1.wordpress.com/2012/07/03/rails-tips/
Hope this may help you.