Skip to content

Instantly share code, notes, and snippets.

@launchkit-codes
Created August 19, 2018 10:12
Show Gist options
  • Select an option

  • Save launchkit-codes/b3a9607021ca5b078eb9f01a038e3720 to your computer and use it in GitHub Desktop.

Select an option

Save launchkit-codes/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