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
235B

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