Created
September 11, 2021 03:29
-
-
Save hsbt/fc4359d75a56c5faefd4797cac1134e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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