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.
|
ruby on rails notes has a very nice blogpost about commenting in erb-files the short version is to comment a single line use
to comment a whole block use a
|
|||||||||||
|
|
Note that if you want to comment out a single line of printing erb you should do like this
|
||||
|
|
|
Although, this will not actually comment out/prevent Ruby processing, but if you're looking to comment multiple For example: You could change this:
to this:
|
|||
|
|
|
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. 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:
you can instead do this:
|
|||
|
|