Skip to content

Instantly share code, notes, and snippets.

@ukstudio
Created February 26, 2009 15:40
Show Gist options
  • Select an option

  • Save ukstudio/70918 to your computer and use it in GitHub Desktop.

Select an option

Save ukstudio/70918 to your computer and use it in GitHub Desktop.
# 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