From 6456f8d7f37e059e7d7212e62b983d346a965dfd 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..17b025c 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" + # Bundle the extra gems: # gem "bj" # gem "hpricot", "0.6" -- 1.6.4.2