class ReactOnRails::Dev::ProcessManager
def run_process_outside_bundle(process, args)
Run a process outside of bundler context
def run_process_outside_bundle(process, args) if defined?(Bundler) with_unbundled_context do system(process, *args) end else # Fallback if Bundler is not available system(process, *args) end end