Skip to content

Instantly share code, notes, and snippets.

@jacegu
Created February 13, 2011 19:58
Show Gist options
  • Save jacegu/825044 to your computer and use it in GitHub Desktop.
Save jacegu/825044 to your computer and use it in GitHub Desktop.
More examples about access control in Ruby. This one wont work.
class MoreAccessControlExamples
def public_by_default
end
protected def protected_method
end
public def this_is_public_too
end
private def private_method
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment