Skip to content

Instantly share code, notes, and snippets.

@onelharrison
Created December 27, 2017 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onelharrison/c1ae60787c3c5be5fc33365bc436cb4e to your computer and use it in GitHub Desktop.
Save onelharrison/c1ae60787c3c5be5fc33365bc436cb4e to your computer and use it in GitHub Desktop.
Code snippet showing how to define private class methods in Ruby.
class Toyota < Car
def self.name
self.i_am
end
def self.i_am
"Toyota #{superclass}"
end
def self.do_something
# I want to be private too
puts "I'm private too! I do something."
end
# I added do_something to show that
# private_class_method takes an array
# of symbols corresponding to method
# names.
private_class_method :i_am, :do_something
end
# => Toyota.name
# "Toyota Car"
#
# => Toyota.i_am # expecting an error
# private method `i_am' called for Toyota:Class
#
# => Toyota.do_something # expecting an error
# private method `do_something' called for Toyota:Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment