Add NotImplementedError for Kernel. and Kernel#

This commit is contained in:
h2so5
2013-04-09 14:04:58 +09:00
parent 87cd4c5ecc
commit 5a8e76cc7b
+11
View File
@@ -3,6 +3,17 @@
#
# ISO 15.3.1
module Kernel
# 15.3.1.2.1
def self.`(s)
raise NotImplementedError.new("` not implemented")
end
# 15.3.1.3.5
def `(s)
Kernel.`(s)
end
##
# Calls the given block repetitively.
#