Sha256: babf6a282510f6792dc6fb2ff32712e5e1444052cd5cad63f77fe1dc02c5b296

Contents?: true

Size: 280 Bytes

Versions: 4

Compression:

Stored size: 280 Bytes

Contents

module RenuoBinCheck
  class Result
    attr_reader :standard_output, :error_output, :exit_code
    def initialize(standard_output, error_output, exit_code)
      @standard_output = standard_output
      @error_output = error_output
      @exit_code = exit_code
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
renuo-bin-check-1.0.0.beta2 lib/renuo_bin_check/result.rb
renuo-bin-check-1.0.0.beta1 lib/renuo_bin_check/result.rb
renuo-bin-check-0.2.1 lib/renuo_bin_check/result.rb
renuo-bin-check-0.2.0 lib/renuo_bin_check/result.rb