In “Exercise 5: Views” the instructions say to
Open app/views/pages/home.html.erb, and type in the following HTML. Fill in your own name.
<div class="main">
<div class="container">
<h1>Hello my name is __</h1>
<p>I make Rails apps.</p>
</div>
</div>
I typed in
<div class="main">
<div class="container">
<h1>Hello my name is Daniel</h1>
<p>I make rails apps.</p>
</div>
</div>
When i hit run it gave me this error.
/home/ccuser/.gem/ruby/2.3.0/gems/activesupport-4.1.1/lib/active_support/values/time_zone.rb:285: warning: circular argument reference - now
This has happened with almost every exercise so far in this course. I don’t understand what I’m doing wrong since I typed in exactly what the instructions said to. If anyone can figure out what went wrong I would appreciate the help.