Skip to content

Instantly share code, notes, and snippets.

@nori3tsu
Last active August 29, 2015 14:07
Show Gist options
  • Save nori3tsu/64f8d67acebd7fa86a65 to your computer and use it in GitHub Desktop.
Save nori3tsu/64f8d67acebd7fa86a65 to your computer and use it in GitHub Desktop.
Mustacheを1ファイルで実装する例
require 'mustache'
str = <<-EOT
a
b
c
EOT
lines = []
str.each_line do |line|
lines << {:line => line.chomp}
end
template = DATA.read
puts Mustache.render(template, :lines => lines)
__END__
{{#lines}}
{{line}} !!
{{/lines}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment