Last active
August 29, 2015 14:17
-
-
Save ayasuda/4750d27482a8775a2fba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'slim' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doctype html | |
html | |
head | |
title slim sample | |
body | |
h1 slim sample | |
== yield |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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