Skip to content

Instantly share code, notes, and snippets.

@theleoborges
Created January 22, 2011 10:24
Show Gist options
  • Save theleoborges/791026 to your computer and use it in GitHub Desktop.
Save theleoborges/791026 to your computer and use it in GitHub Desktop.
hacking-rubys-syntax#1
class Test
def method_a
method_b
end
def method_b
puts "I'm a private method"
end
private :method_b
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment