Sha256: 63687322a8bed753f6abb877d65a6aefff14822c8ec9a1d16110da6706520a8e

Contents?: true

Size: 1.26 KB

Versions: 13

Compression:

Stored size: 1.26 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 = %w{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

13 entries across 13 versions & 1 rubygems

Version Path
chef-dk-3.9.0 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-3.8.14 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-3.7.23 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-3.6.57 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-3.5.13 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-2.6.2 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-3.4.38 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-2.6.1 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-3.3.23 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-3.2.30 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-2.5.13 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-3.1.0 spec/unit/fixtures/cookbooks_api/update_fixtures.rb
chef-dk-2.5.3 spec/unit/fixtures/cookbooks_api/update_fixtures.rb