summaryrefslogtreecommitdiff
path: root/test/syntax/code/erb
blob: f7ea6203f5e410fca21cda4f18f4c5325b49025d (plain)
1
2
3
4
5
6
7
8
9
10
<%# this is a comment %>

<% @posts.each do |post| %>
  <p><%= link_to post.title, post %></p>
<% end %>

<%- available_things = things.select(&:available?) -%>
<%%- x = 1 + 2 -%%>
<%% value = 'real string #{@value}' %%>
<%%= available_things.inspect %%>