comment out ruby code example
Example 1: comment in ruby
# Single line comment
=begin
multiline
comment
=end
Example 2: how to comment out embedded ruby
<%# This is a great comment! %>
# Single line comment
=begin
multiline
comment
=end
<%# This is a great comment! %>