Class: EveOnline::ESI::Models::DogmaAttributes
- Defined in:
- lib/eve_online/esi/models/dogma_attributes.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from EveOnline::ESI::Models::Base
Instance Method Details
#dogma_attributes ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/eve_online/esi/models/dogma_attributes.rb', line 7 def dogma_attributes output = [] return output unless .is_a?(Array) .each do |dogma_attribute_short| output << DogmaAttributeShort.new(dogma_attribute_short) end output end |