Skip to content

Instantly share code, notes, and snippets.

@patmaddox
Created March 28, 2017 19:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patmaddox/0acccbfe11e98bc5bdb8da328bc099d1 to your computer and use it in GitHub Desktop.
Save patmaddox/0acccbfe11e98bc5bdb8da328bc099d1 to your computer and use it in GitHub Desktop.
label every protected method
class FunkyTown
def time_to
end
def get_funky
end
protected
def get_down
end
protected
def get_down_get_down
end
protected
def hit_me
end
private
def one_more_time
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment