You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
224B

  1. $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
  2. require 'mustache'
  3. class Escaped < Mustache
  4. self.path = File.dirname(__FILE__)
  5. def title
  6. "Bear > Shark"
  7. end
  8. end
  9. if $0 == __FILE__
  10. puts Escaped.to_html
  11. end