Nouns in Method Names

A good indication that there is another object that we can extract is a tendency to add a noun into a method name.

current_user.timeline_shouts

These can be extracted into different models

@user = User.find_by(username: params[:id])
@timeline = Timeline.new([@user])