Sha256: b6649e8638539460fc0e80185f4a85d53152df1444cb98816fa7b4d163d852ca

Contents?: true

Size: 233 Bytes

Versions: 8

Compression:

Stored size: 233 Bytes

Contents

module Laboratory
  class Experiment
    class Event
      attr_reader :id, :event_recordings

      def initialize(id:, event_recordings: [])
        @id = id
        @event_recordings = event_recordings
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
laboratory-0.1.7 lib/laboratory/experiment/event.rb
laboratory-0.1.6 lib/laboratory/experiment/event.rb
laboratory-0.1.5 lib/laboratory/experiment/event.rb
laboratory-0.1.4 lib/laboratory/experiment/event.rb
laboratory-0.1.3 lib/laboratory/experiment/event.rb
laboratory-0.1.2 lib/laboratory/experiment/event.rb
laboratory-0.1.1 lib/laboratory/experiment/event.rb
laboratory-0.1.0 lib/laboratory/experiment/event.rb