Method: Builder::CSS#comment!

Defined in:
lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/css.rb

#comment!(comment_text) ⇒ Object

Create a comment string in the output.



134
135
136
# File 'lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/css.rb', line 134

def comment!(comment_text)
  @target << "/* #{comment_text} */\n"
end