Sha256: bca7b4e1583f7910838c4cf8502d920bd0869b5109ff8ac23df743baaa080b60

Contents?: true

Size: 1014 Bytes

Versions: 2

Compression:

Stored size: 1014 Bytes

Contents

module Locomotive
  module Steam
    module Adapters
      module Filesystem
        module YAMLLoaders

          class Site

            include Adapters::Filesystem::YAMLLoader

            def load(scope)
              attributes = _load(File.join(site_path, 'config', 'site.yml'))

              (attributes[:domains] ||= []).concat(%w(0.0.0.0 localhost))

              attributes[:picture] = File.expand_path(File.join(site_path, 'icon.png'))

              attributes[:metafields_schema] = load_metafields_schema

              attributes.merge!(load_from_env)

              [attributes]
            end

            private

            def load_from_env
              return {} if env == :local

              safe_json_file_load(File.join(site_path, 'data', env.to_s, 'site.json')).symbolize_keys
            end

            def load_metafields_schema
              _load(File.join(site_path, 'config', 'metafields_schema.yml'))
            end

          end

        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
locomotivecms_steam-1.5.0 lib/locomotive/steam/adapters/filesystem/yaml_loaders/site.rb
locomotivecms_steam-1.5.0.rc1 lib/locomotive/steam/adapters/filesystem/yaml_loaders/site.rb