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.

19 lines
278B

  1. $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
  2. require 'mustache'
  3. class ViewPartial < Mustache
  4. self.path = File.dirname(__FILE__)
  5. def greeting
  6. "Welcome"
  7. end
  8. def farewell
  9. "Fair enough, right?"
  10. end
  11. end
  12. if $0 == __FILE__
  13. puts ViewPartial.to_html
  14. end