Is this not evaluating the if statement?
<%= current_user.profile.name || current_user.email if current_user.profile.name.blank? %>
Debug on current_user.profile.name shows it is an empty string, but it's not printing email. Changing to a ternary operator like this:
<%= current_user.profile.name.blank? ? current_user.email : current_user.profile.name %>
works, but I'd like to understand why the first way doesn't work.

a || b if cis parsed as(a || b) if cIn this case, c is only true if the profile name is blank .. so, now, to the next part: suppose a is""(blank, must be given theif) and b is a fallback value, then consider:"" || "hello world!"<- What is that result? (Hint: What does ruby consider truthy values? What would the result ofnil || "hello world!"be?) – user166390 Jan 18 at 6:36<%= current_user.profile.name || current_user.email if current_user.profile.name == '' %>and it still wouldn't print the email – Joel Grannas Jan 18 at 6:44""is not false-y :) In that case, what wouldaandbbe? What woulda || bbe? Would it ever be useful? (Note thatstr == ""impliesstr.blank?andstr.empty?) – user166390 Jan 18 at 6:46x || y, wherexis a string, always evaluates tox. – user166390 Jan 18 at 6:53