Class: Locomotive::Mounter::Reader::Api::TranslationsReader

Inherits:
Base
  • Object
show all
Defined in:
lib/locomotive/mounter/reader/api/translations_reader.rb

Instance Attribute Summary

Attributes inherited from Base

#items, #runner

Instance Method Summary collapse

Methods inherited from Base

#add_content_asset, #get, #initialize, #mounting_point

Constructor Details

This class inherits a constructor from Locomotive::Mounter::Reader::Api::Base

Instance Method Details

#readArray

Build the list of translations

Returns:

  • (Array)

    The cached list of theme assets



12
13
14
15
16
17
18
# File 'lib/locomotive/mounter/reader/api/translations_reader.rb', line 12

def read
  super

  self.items = get(:translations).each_with_object({}) do |attributes,hash|
    hash[attributes['key']] = Locomotive::Mounter::Models::Translation.new(attributes)
  end
end