25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

view_partial.rb 278B

16 년 전
123456789101112131415161718
  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