class ConnectorKit::AppListResponseMapper
Mapper between a HTTParty response and a list of Apps
Public Instance Methods
map(data)
click to toggle source
# File lib/connector_kit/mappers/app_list_response_mapper.rb, line 6 def map(data) data.map { |app| App.new(app) } end