I'm following a RoR tutorial and I'm following directions exactly (or so I think).
This is my app/views/static_pages/home.html.erb file:
<% provide(:title, 'Home') %>
<h1>Sample App</h1>
<p>
This is the home page for the
<a href="http://railstutorial.org/">Ruby on Rails Tutorial</a>
sample application.
</p>
<%= link_to "Sign up now!", '#', class: "signup_button round" %>
When I run it in the local host, though, I get the error:
sample_app/app/views/static_pages/home.html.erb:9: syntax error, unexpected ':' ...to "Sign up now!", '#', class: "signup_button round" );@outp...
I don't understand what I have to change and why. Any help?
{ class: 'foo' }syntax for hashes was added in1.9. It won't work in earlier versions of ruby. – KL-7 Jan 31 at 20:25