From a6da373fcf7527f3e3317c5226de4845ef83aacf Mon Sep 17 00:00:00 2001 From: Prem Sichanugrist Date: Tue, 9 Feb 2010 02:36:45 +0700 Subject: [PATCH] Add 'gem mongrel' to application template's Gemfile to make sure people know they need to explicitly specify if they want to use Mongrel --- .../lib/generators/rails/app/templates/Gemfile | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/railties/lib/generators/rails/app/templates/Gemfile b/railties/lib/generators/rails/app/templates/Gemfile index f89dbe1..8b78267 100644 --- a/railties/lib/generators/rails/app/templates/Gemfile +++ b/railties/lib/generators/rails/app/templates/Gemfile @@ -15,6 +15,9 @@ gem "rails", "<%= Rails::VERSION::STRING %>" gem "<%= gem_for_database %>"<% if require_for_database %>, :require => "<%= require_for_database %>"<% end %> <% end -%> +# Uncomment this line below to use Mongrel as your development server +# gem "mongrel", :group => :development + # Bundle the extra gems: # gem "bj" # gem "hpricot", "0.6" -- 1.6.4.2