Skip to content

Instantly share code, notes, and snippets.

@skalnik
Created January 7, 2009 18:11
Show Gist options
  • Save skalnik/44354 to your computer and use it in GitHub Desktop.
Save skalnik/44354 to your computer and use it in GitHub Desktop.
class Example
def public
puts "Public Method"
end
private
def private
puts "Private methods go below the private tag"
end
protected
def protected
puts "Protected methods go under the protected tag"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment