class ConnectorKit::BuildListResponseMapper

Mapper between a HTTParty response and a list of Builds

Public Instance Methods

map(data) click to toggle source
# File lib/connector_kit/mappers/build_list_response_mapper.rb, line 6
def map(data)
  data.map { |build| Build.new(build) }
end