Skip to content

Instantly share code, notes, and snippets.

@satococoa
Created April 9, 2014 14:40
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 satococoa/10278136 to your computer and use it in GitHub Desktop.
Save satococoa/10278136 to your computer and use it in GitHub Desktop.
module TagList
private
def TagList
'hoge'
end
end
class Hoge
include TagList
def some_method
# do something...
tl = TagList() # クラス内部専用のヘルパみたいに使ってほしい
p tl
end
end
hoge = Hoge.new
tl = hoge.TagList() # この使い方はされたくない!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment