Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个基于 PHP 的应用程序,需要调用一个用 Ruby 编写的自动化脚本。我不想用 PHP 重写 ruby 脚本,它们也不需要共享变量。Ruby 脚本具有 gem 依赖项,当从system(). 如何让 ruby 脚本从system()调用中查看依赖关系?
system()
例子:
system('/usr/bin/ruby /www/myscript.rb')
在system()调用中设置 GEM_HOME 变量
system('export GEM_HOME=/path/to/rubygems; /usr/bin/ruby /www/myscript.rb');