Sha256: bc71e0888a7d9cab6282a0e734fe41e1e8f846d4a609156ab075b1b11c316194

Contents?: true

Size: 1.91 KB

Versions: 11

Compression:

Stored size: 1.91 KB

Contents

require 'yaml'

module Bibliothecary
  module Parsers
    class Shard
      PLATFORM_NAME = 'shard'

      def self.parse(filename, file_contents)
        if filename.match(/^shard\.yml$/i)
          yaml = YAML.load file_contents
          parse_yaml_manifest(yaml)
        elsif filename.match(/^shard\.lock$/i)
          yaml = YAML.load file_contents
          parse_yaml_lockfile(yaml)
        else
          []
        end
      end

      def self.analyse(folder_path, file_list)
        [analyse_yaml_manifest(folder_path, file_list),
        analyse_yaml_lockfile(folder_path, file_list)]
      end

      def self.analyse_yaml_manifest(folder_path, file_list)
        path = file_list.find{|path| path.gsub(folder_path, '').gsub(/^\//, '').match(/^shard\.yml$/i) }
        return unless path

        manifest = YAML.load File.open(path).read

        {
          platform: PLATFORM_NAME,
          path: path,
          dependencies: parse_yaml_manifest(manifest)
        }
      end

      def self.analyse_yaml_lockfile(folder_path, file_list)
        path = file_list.find{|path| path.gsub(folder_path, '').gsub(/^\//, '').match(/^shard\.lock$/i) }
        return unless path

        manifest = YAML.load File.open(path).read

        {
          platform: PLATFORM_NAME,
          path: path,
          dependencies: parse_yaml_lockfile(manifest)
        }
      end

      def self.parse_yaml_lockfile(manifest)
        map_dependencies(manifest, 'shards', 'runtime')
      end

      def self.parse_yaml_manifest(manifest)
        map_dependencies(manifest, 'dependencies', 'runtime') +
        map_dependencies(manifest, 'development_dependencies', 'runtime')
      end

      def self.map_dependencies(hash, key, type)
        hash.fetch(key,[]).map do |name, requirement|
          {
            name: name,
            requirement: requirement['version'] || '*',
            type: type
          }
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
bibliothecary-1.2.1 lib/bibliothecary/parsers/shard.rb
bibliothecary-1.2.0 lib/bibliothecary/parsers/shard.rb
bibliothecary-1.1.0 lib/bibliothecary/parsers/shard.rb
bibliothecary-1.0.0 lib/bibliothecary/parsers/shard.rb
bibliothecary-0.16.1 lib/bibliothecary/parsers/shard.rb
bibliothecary-0.16.0 lib/bibliothecary/parsers/shard.rb
bibliothecary-0.15.2 lib/bibliothecary/parsers/shard.rb
bibliothecary-0.15.1 lib/bibliothecary/parsers/shard.rb
bibliothecary-0.15.0 lib/bibliothecary/parsers/shard.rb
bibliothecary-0.14.1 lib/bibliothecary/parsers/shard.rb
bibliothecary-0.14.0 lib/bibliothecary/parsers/shard.rb