Created
February 26, 2009 15:40
-
-
Save ukstudio/70918 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
| # coding: UTF-8 | |
| class Logger | |
| def self.write(out, log) | |
| raise TypeError, "書き込めない何かだよ" unless out.respond_to? :write | |
| out.write log | |
| end | |
| end | |
| File.open("hoge", "w") do |f| | |
| Logger.write(f, "log") # ファイルに書き込み | |
| end | |
| Logger.write(Object.new, "hoge") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment