Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Am a newbie to rails , please let me know the way to comment out a single line and also to comment out a block of lines in *.html.erb files.

share|improve this question

4 Answers

up vote 42 down vote accepted

ruby on rails notes has a very nice blogpost about commenting in erb-files

the short version is

to comment a single line use

<%-# commented line -%>

to comment a whole block use a if false to surrond your code like this

<% if false %>
code to comment
<% end %>
share|improve this answer
4  
+1 For solving my issue, but I've found it very ugly. To comment one line I must use 3 additional characters, and the block comment is nothing but code that will be not executed - no other color coding that makes it very unpractical to see which code is not executed on first look. – gotqn Nov 5 '12 at 18:34
Please see my new answer at the very bottom (11/28/2012) - I figured out a way to do a multi-line comment that will work in most cases. – Flak DiNenno Jan 5 at 0:26
1  
For single line, you don't need the hyphens e.g. <%# my comment %> – jackocnr Jan 30 at 0:50

Note that if you want to comment out a single line of printing erb you should do like this

<%#= ["Buck", "Papandreou"].join(" you ") %>
share|improve this answer

Although, this will not actually comment out/prevent Ruby processing, but if you're looking to comment multiple <%= lines for the purpose of hiding output temporarily, then in many cases simply commenting out the HTML that the rails helpers generate might get you what you need.

For example:

You could change this:

  <div class="field">
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  </div>

to this:

  <div class="field">
  <!--
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  -->
  </div>
share|improve this answer

Actually, I was doing some debugging just now and realized something really cool and much, much better that will work for NON-PRINTING .erb/Ruby... I'm not sure how (or if this would work with printing .erb, e.g. <%= f.label :title %>

So, if you have multiple lines of continuous non-printing Ruby in an .erb file, then rather than use rails brackets on each line and commenting in front of each starting bracket as we usually do like this:

<% if flash[:myErrors] %>
  <% if flash[:myErrors].any? %>
    <% if @post.id.nil? %>
      <% if @myPost!=-1 %>
        <% @post = @myPost %>
      <% else %>
        <% @post = Post.new %>
      <% end %>
    <% end %>
  <% end %>
<% end %>

you can instead do this:

<% 
  if flash[:myErrors] then
    if flash[:myErrors].any? then
      if @post.id.nil? then
        if @myPost!=-1 then
          @post = @myPost 
        else 
          @post = Post.new 
        end 
      end 
    end 
  end 
%>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.