Sha256: dbccf3ebb23ff81445f86ed520542818c9326e2a014e1c7818782c77d084d560

Contents?: true

Size: 158 Bytes

Versions: 16

Compression:

Stored size: 158 Bytes

Contents

# frozen_string_literal: true

class Group
  def initialize(hash)
    @hash = hash
  end

  private

  def create_person(name)
    Person.new(name)
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
arstotzka-1.6.2 spec/support/models/group.rb
arstotzka-1.6.1 spec/support/models/group.rb
arstotzka-1.6.0 spec/support/models/group.rb
arstotzka-1.5.0 spec/support/models/group.rb
arstotzka-1.4.4 spec/support/models/group.rb
arstotzka-1.4.3 spec/support/models/group.rb
arstotzka-1.4.2 spec/support/models/group.rb
arstotzka-1.4.1 spec/support/models/group.rb
arstotzka-1.4.0 spec/support/models/group.rb
arstotzka-1.3.2 spec/support/models/group.rb
arstotzka-1.3.1 spec/support/models/group.rb
arstotzka-1.3.0 spec/support/models/group.rb
arstotzka-1.2.4 spec/support/models/group.rb
arstotzka-1.2.3 spec/support/models/group.rb
arstotzka-1.2.2 spec/support/models/group.rb
arstotzka-1.2.1 spec/support/models/group.rb