0
Jruby 9.1.7.0에서 오이 스크립트를 실행합니다. 출력은 STDOUT으로 이동합니다. 로컬 변수에 저장하려면 어떻게해야합니까?Cucumber :: CLI :: Main.execute에서 출력 (STDOUT)을 변수로 가져 오는 방법
require 'cucumber'
require 'stringio'
@output = StringIO.new
features = 'features/first.feature'
args = features.split.concat %w(-f html)
# Run cucumber
begin
# output goes to STDOUT
Cucumber::Cli::Main.new(args).execute!
rescue SystemExit
puts "Cucumber calls @kernel.exit(), killing your script unless you rescue"
end