25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
- require 'mustache'
-
- class Simple < Mustache
- self.path = File.dirname(__FILE__)
-
- def name
- "Chris"
- end
-
- def value
- 10_000
- end
-
- def taxed_value
- value - (value * 0.4)
- end
-
- def in_ca
- true
- end
- end
-
- if $0 == __FILE__
- puts Simple.to_html
- end
|