Sha256: 9fe45de8a2fa45ef8749940fee53b583a71d618abaac86a8d42ee4f8d772cdf5

Contents?: true

Size: 1.28 KB

Versions: 6

Compression:

Stored size: 1.28 KB

Contents

require 'openssl'
require 'net/https'
require 'json'
require 'pp'
require 'uri'

THIS_DIR = File.expand_path(File.dirname(__FILE__))

UNIVERSE_JSON_PATH = File.join(THIS_DIR, 'universe.json')
SMALL_UNIVERSE_JSON_PATH = File.join(THIS_DIR, 'small_universe.json')
PRUNED_UNIVERSE_PATH = File.join(THIS_DIR, 'pruned_small_universe.json')

COOKBOOKS_IN_SMALL_UNIVERSE = ["apache2", "application", "apt", "database", "mysql", "nginx", "postgresql", "yum"].freeze

universe = URI("https://supermarket.chef.io/universe")

universe_serialized = Net::HTTP.get(universe)

universe = JSON.parse(universe_serialized)

smaller_universe = universe.keep_if {|k,v| COOKBOOKS_IN_SMALL_UNIVERSE.include?(k) }

pruned_universe = smaller_universe.inject({}) do |pruned_graph, (cookbook_name, graph_info)|
  pruned_graph[cookbook_name] = graph_info.inject({}) do |per_version_graph, (version_number, version_info)|
    per_version_graph[version_number] = version_info["dependencies"]
    per_version_graph
  end
  pruned_graph
end


File.open(UNIVERSE_JSON_PATH, 'w+') { |f| f.print(universe_serialized) }
File.open(SMALL_UNIVERSE_JSON_PATH, 'w+') { |f| f.print(JSON.pretty_generate(smaller_universe)) }
File.open(PRUNED_UNIVERSE_PATH, 'w+') { |f| f.print(JSON.pretty_generate(pruned_universe)) }


Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
chef-dk-0.15.16 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-0.15.15 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-0.15.9 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-0.13.21 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-0.12.0 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-0.9.0 spec/unit/fixtures/cookbooks_api/update_fixtures.rb