Method: Chronicle::ETL::JSONExtractor#extract

Defined in:
lib/chronicle/etl/extractors/json_extractor.rb

#extractObject



24
25
26
27
28
# File 'lib/chronicle/etl/extractors/json_extractor.rb', line 24

def extract
  @jsons.each do |json|
    yield Chronicle::ETL::Extraction.new(data: json)
  end
end