Hello Ruby on Rails: Core Community, My name is Cristian and this is my first contribution. https://github.com/mess110/rails/tree/controller_generator_route_quotes What does it do? Currently, when rails generates a controller it adds a route to routes.rb (ex: get "home/index"). All the routes in routes.rb are written with single quotes. Except the controller generated route. It is written with double quotes. This patch attempts to fix that. Example: rails new test-app cd test-app rails g controller home index cat config/routes.rb | grep home Before this patch get "home/index" After this patch get 'home/index' I ran the generator tests. I would like to hear the community's opinion. Is there a specific reason why double quotes are used? If not, I will create the pull request. Cheers, Cris -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-core+unsubscribe@googlegroups.com. To post to this group, send email to rubyonrails-core@googlegroups.com. Visit this group at http://groups.google.com/group/rubyonrails-core. For more options, visit https://groups.google.com/groups/opt_out.