Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Created March 17, 2018 16:29
Show Gist options
  • Save jordanhudgens/14e7e587faef64251af383e385d3aa4c to your computer and use it in GitHub Desktop.
Save jordanhudgens/14e7e587faef64251af383e385d3aa4c to your computer and use it in GitHub Desktop.
module ConsoleHelper
module Console
def u(email = nil)
if email
User.find_by_email(email)
else
User.last
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment