Sha256: 55c6d2a8632dbe0212ddd4e10d4dcb2e8d5c00b30855d83fab781908d7b131d9

Contents?: true

Size: 1.14 KB

Versions: 5

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

require "yaml"

module PlatformosCheck
  class YamlFile < AppFile
    def initialize(relative_path, storage)
      super
      @loaded = false
      @content = nil
      @parser_error = nil
    end

    def content
      load!
      @content
    end

    def parse_error
      load!
      @parser_error
    end

    def update_contents(new_content = {})
      raise ArgumentError if new_content.is_a?(String)

      @content = new_content
    end

    def write
      pretty = content_to_string
      @storage.write(@relative_path, pretty)
      @source = pretty
    end

    def content_to_string
      pretty = YAML.dump(@content)
      return unless source.rstrip != pretty.rstrip

      # Most editors add a trailing \n at the end of files. Here we
      # try to maintain the convention.
      eof = source.end_with?("\n") ? "\n" : ""
      pretty.gsub("\n", @eol) + eof
    end

    def yaml?
      true
    end

    private

    def load!
      return if @loaded

      @content = YAML.load(source, aliases: true) || {}
    rescue Psych::SyntaxError => e
      @parser_error = e
    ensure
      @loaded = true
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
platformos-check-0.4.14 lib/platformos_check/yaml_file.rb
platformos-check-0.4.13 lib/platformos_check/yaml_file.rb
platformos-check-0.4.12 lib/platformos_check/yaml_file.rb
platformos-check-0.4.11 lib/platformos_check/yaml_file.rb
platformos-check-0.4.10 lib/platformos_check/yaml_file.rb