Skip to content

Instantly share code, notes, and snippets.

@hsbt
Created September 11, 2021 03:29
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 hsbt/fc4359d75a56c5faefd4797cac1134e9 to your computer and use it in GitHub Desktop.
Save hsbt/fc4359d75a56c5faefd4797cac1134e9 to your computer and use it in GitHub Desktop.
class Demo
# 外向けからはこれだけがよばれる
def run
puts 'new'
_run
end
private
# 昔はこっちが呼ばれていた
# テストがなくて書き換えるのは大変
# その他の理由たくさん
def _run
puts 'old_new'
end
end
Demo.new.run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment