Skip to content

Instantly share code, notes, and snippets.

/ruby.rb Secret

Created March 13, 2018 03:34
Show Gist options
  • Save anonymous/1b8bda6da92e85fc57e329ec2c03f046 to your computer and use it in GitHub Desktop.
Save anonymous/1b8bda6da92e85fc57e329ec2c03f046 to your computer and use it in GitHub Desktop.
class Parent
def initialize(omg)
@omg = omg
end
private
attr_reader :omg
end
class Child < Parent
def foo
omg
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment