1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #1315 from ardavis/master

Removed unnecessary space in application.rb
This commit is contained in:
José Valim 2011-05-25 22:46:53 -07:00
commit badc72f3e6
2 changed files with 2 additions and 2 deletions

View file

@ -128,7 +128,7 @@ module Rails
end
def comment_if(value)
options[value] ? '#' : ''
options[value] ? '# ' : ''
end
def rails_gemfile_entry

View file

@ -4,7 +4,7 @@ require File.expand_path('../boot', __FILE__)
require 'rails/all'
<% else -%>
# Pick the frameworks you want:
<%= comment_if :skip_active_record %> require "active_record/railtie"
<%= comment_if :skip_active_record %>require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "active_resource/railtie"