class RbBCC::Invoker
Public Class Methods
new(args)
click to toggle source
# File lib/rbbcc/invoker.rb, line 6 def initialize(args) @command = args.shift raise "Invalid option. Please specify script name" unless @command args.shift if args[0] == '--' @args = args end
Public Instance Methods
run()
click to toggle source
# File lib/rbbcc/invoker.rb, line 14 def run plugins = Gem::Specification .find_all .select{|s| s.name =~ /^rbbcc-/ } .map(&:name) plugins.each {|n| require n } script = RbBCC::Plugin.find_script_name(@command) raise Errno::ENOENT, "Script not found: #{@command}" unless script binpath = File.readlink "/proc/self/exe" Process.exec binpath, script, *@args end