Skip to content

Instantly share code, notes, and snippets.

@kodaitakahashi
Created October 31, 2016 03:09
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 kodaitakahashi/b2f7ce8cf073c8f2c2fb71e968843651 to your computer and use it in GitHub Desktop.
Save kodaitakahashi/b2f7ce8cf073c8f2c2fb71e968843651 to your computer and use it in GitHub Desktop.
サブクラスからprivateメソッドの呼び出し
class Hoge
private
def hoge
puts 'hoge'
end
end
class Fuga < Hoge
def hoge
super
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment