Skip to content

Instantly share code, notes, and snippets.

@mehdi-farsi
Created August 19, 2018 10:12
Show Gist options
  • Save mehdi-farsi/b3a9607021ca5b078eb9f01a038e3720 to your computer and use it in GitHub Desktop.
Save mehdi-farsi/b3a9607021ca5b078eb9f01a038e3720 to your computer and use it in GitHub Desktop.
class User
def self.inherited(user_type)
puts "#{user_type} is a kind of user"
end
end
class Tenant < User
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment