Merge pull request #1162 from h2so5/error-for-external-command-execution

Add NotImplementedError for Kernel.` and Kernel#`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-04-09 09:47:12 -07:00
+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.
#