We were very inconsistent regarding these rules. Personally I prefer no empty lines around blocks, clases, etc... as recommended by the Ruby style guide [1], and they're the default values in rubocop, so those are the settings I'm applying. The exception is the `private` access modifier, since we were leaving empty lines around it most of the time. That's the default rubocop rule as well. Personally I don't have a strong preference about this one. [1] https://rubystyle.guide/#empty-lines-around-bodies
30 lines
589 B
Ruby
30 lines
589 B
Ruby
module DebatesHelper
|
|
def has_featured?
|
|
Debate.all.featured.count > 0
|
|
end
|
|
|
|
def empty_recommended_debates_message_text(user)
|
|
if user.interests.any?
|
|
t("debates.index.recommendations.without_results")
|
|
else
|
|
t("debates.index.recommendations.without_interests")
|
|
end
|
|
end
|
|
|
|
def debates_minimal_view_path
|
|
debates_path(view: debates_secondary_view)
|
|
end
|
|
|
|
def debates_default_view?
|
|
@view == "default"
|
|
end
|
|
|
|
def debates_current_view
|
|
@view
|
|
end
|
|
|
|
def debates_secondary_view
|
|
debates_current_view == "default" ? "minimal" : "default"
|
|
end
|
|
end
|