# File features/support/env.rb, line 79 def initialize cmd @cmd = cmd end
# File features/support/env.rb, line 87 def self.run cmd command = new(cmd) command.run command end
# File features/support/env.rb, line 93 def run @output = %x#{@cmd} 2>&1`.chomp @status = $? $?.success? end
# File features/support/env.rb, line 83 def to_s @cmd end