Skip to content

Instantly share code, notes, and snippets.

@ayasuda
Last active August 29, 2015 14:17
Show Gist options
  • Save ayasuda/4750d27482a8775a2fba to your computer and use it in GitHub Desktop.
Save ayasuda/4750d27482a8775a2fba to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
gem 'slim'
GEM
remote: https://rubygems.org/
specs:
slim (3.0.3)
temple (~> 0.7.3)
tilt (>= 1.3.3, < 2.1)
temple (0.7.5)
tilt (2.0.1)
PLATFORMS
ruby
DEPENDENCIES
slim
doctype html
html
head
title slim sample
body
h1 slim sample
== yield
require 'slim'
# これは動く
puts Slim::Template.new('./sample.slim').render{ "aaaaa" }
# これは動かない
puts Slim::Template.new('./sample.slim').render do
"aaaaa"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment