Class: Avm::EacWebappBase0::FileFormats::Provider

Inherits:
Object
  • Object
show all
Defined in:
lib/avm/eac_webapp_base0/file_formats/provider.rb

Constant Summary collapse

ALL_NAMES =
%w[css html javascript json xml].freeze

Instance Method Summary collapse

Instance Method Details

#allObject



16
17
18
19
20
# File 'lib/avm/eac_webapp_base0/file_formats/provider.rb', line 16

def all
  @all ||= ALL_NAMES.map do |name|
    ::Avm::EacWebappBase0::FileFormats.const_get(name.camelize).freeze
  end
end