module Thor::Actions

def run_ruby_script(command, config={})


config:: give :verbose => false to not log the status.
command:: the command to be executed.
==== Parameters

Executes a ruby script (taking into account WIN32 platform quirks).
def run_ruby_script(command, config={})
  return unless behavior == :invoke
  run command, config.merge(:with => Thor::Util.ruby_command)
end