What is the meaning of "-" in blocks of server-side code in ruby on rails?
- by mmacaulay
I often see things like this in rails views:
<% form_tag some_path do -%>
<% end -%>
Why is there a "-" at the end of each of those lines? My code works fine without it, but is it a best practice or some kind of security measure?