Sha256: ccdfada1d4bfc0d3399ce4c5ee360b07e8168c9af0eff952a1171e25902c5694
Contents?: true
Size: 273 Bytes
Versions: 14
Compression:
Stored size: 273 Bytes
Contents
# frozen_string_literal: true module EacCli module Runner class Exit < ::StandardError attr_reader :status def initialize(status = true) # rubocop:disable Style/OptionalBooleanParameter super @status = status end end end end
Version data entries
14 entries across 14 versions & 2 rubygems