Merge pull request #76 from yyamano/issue-75

Make backquote work with the latest mruby. Fixed #75
This commit is contained in:
Tomoyuki Sahara
2017-04-25 11:19:07 +09:00
committed by GitHub
+1 -1
View File
@@ -1,5 +1,5 @@
module Kernel
def self.`(cmd)
def `(cmd)
IO.popen(cmd) { |io| io.read }
end