Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save pasberth/1258896 to your computer and use it in GitHub Desktop.

Select an option

Save pasberth/1258896 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
module Kernel
def method_missing funcname, *args, &blk
if funcname =~ /\A画面に「(.*)」と表示してくださいですわ\z/
puts $1
else
super
end
end
end
画面に「キャビアァァァァァビィ~~~~ム!!!!!!」と表示してくださいですわ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment