Skip to content

Instantly share code, notes, and snippets.

@corroded
Created June 10, 2020 10:11
Show Gist options
  • Save corroded/766f01eea615dd703eaeb63859feb9cf to your computer and use it in GitHub Desktop.
Save corroded/766f01eea615dd703eaeb63859feb9cf to your computer and use it in GitHub Desktop.
Sample user model
class User < ActiveRecord::Base
def coolifier
username = "#{username}...the Coolest!"
end
def make_cool
cool = true
end
end
# u = User.new(username: 'Swag')
# puts u.username
# "Swag"
# u.coolifier
# puts u.username
# "Swag...the coolest!"
# u.make_cool
# puts u.cool?
# true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment