Module: Atlantis::Portal

Defined in:
lib/Atlantis/portal.rb,
lib/Atlantis/portal/agent.rb,
lib/Atlantis/portal/service.rb,
lib/Atlantis/portal/testflight/testflightservice.rb,
lib/Atlantis/portal/crashlytics/crashlyticsservice.rb,
lib/Atlantis/portal/helpers.rb

Defined Under Namespace

Modules: Helpers Classes: Agent, CommandArguments, CrashlyticsService, Device, Group, NetworkConnectionError, Person, Service, Team, TestFlightService, UnexpectedContentError, UnknownTeamError, UnsuccessfulAuthenticationError

Instance Method Summary collapse

Instance Method Details

#array_for_object(fields, row) ⇒ Object



116
117
118
119
120
121
122
123
124
# File 'lib/Atlantis/portal/helpers.rb', line 116

def array_for_object(fields, row)
  properties = []

  fields.each do |field|
    properties << row[field.downcase]
  end

  return properties
end