Sha256: 77798c6597c42b22561c93cac06d9e10f5d36f6707c1a55464f5bf6a04a4311e

Contents?: true

Size: 331 Bytes

Versions: 3

Compression:

Stored size: 331 Bytes

Contents

# frozen_string_literal: true

module Grumlin
  class StepData
    attr_reader :name, :arguments

    def initialize(name, arguments)
      @name = name
      @arguments = arguments
    end

    def ==(other)
      self.class == other.class &&
        @name == other.name &&
        @arguments == other.arguments
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
grumlin-0.17.0 lib/grumlin/step_data.rb
grumlin-0.16.1 lib/grumlin/step_data.rb
grumlin-0.16.0 lib/grumlin/step_data.rb