Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby

chris salvi
chris salvi
7,584 Points

challenge question on adding if/else erb statement

<div class="status">
  <% if user_signed_in? %>
    <span class="message">You are signed in.</span>
  <% else %>
    <span class="message">You are NOT signed in.</span>

</div>

What am I doing wrong here? says that both outputs are being printed despite my if/else statement....

2 Answers

Where's did the

<% end %>

go to?

I got stuck on this once because I was used to CoffeeScript, so you're not the only one.

chris salvi
chris salvi
7,584 Points

humm, weird. So does the <% end %> just signify the end of the ruby code? Cause in the actual project it doesnt appear anywhere close to the if/else statement.

<% end %>

signifies the end of a directive (an if or a def or a class keyword). They do the exact same thing as closing curly brackets } in JavaScript.

This forum post was NOT helpful!

It only confused me..

I had to go looking on Answer 1 of this stackoverflow thread to get a clue: http://stackoverflow.com/questions/14335130/if-user-signed-in-puts-some-text-devise

My apologies; it appears as if the forums butchered my Markdown. It should be fixed now. Sorry about that!