Skip to content

Instantly share code, notes, and snippets.

@akirill0v
Last active December 12, 2015 05:18
Show Gist options
  • Save akirill0v/4720882 to your computer and use it in GitHub Desktop.
Save akirill0v/4720882 to your computer and use it in GitHub Desktop.
Павлик Морозов
class Parent
def test
puts "test"
end
private :test
end
class Child < Parent
public :test
end
pc = Parent.new
pc.test # => NoMethodError: private method `test' called for #<Parent:0xe1fdd4>
cc = Child.new
cc.test #=> "test"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment