module Rake::AltSystem
The Rake
gem aliases Kernel.system and the backtick operator into this module. For some reason, this causes a Segfault. Strangely AltSystem
doesn’t exist in the MacRuby-provided rake.
Public Class Methods
`(*args)
click to toggle source
# File lib/rxcode/spec/rake_ext.rb, line 17 def self.`(*args) Kernel.method(:`).call(*args) end
backticks(*args)
click to toggle source
# File lib/rxcode/spec/rake_ext.rb, line 21 def self.backticks(*args) Kernel.method(:`).call(*args) end
system(*args)
click to toggle source
# File lib/rxcode/spec/rake_ext.rb, line 13 def self.system(*args) Kernel.system(*args) end