# File lib/chef_zero/chef_data/cookbook_data.rb, line 69
        def initialize(cookbook)
          self.name(cookbook.name)
          self.recipes(cookbook.fully_qualified_recipe_names)
          %w(attributes grouping dependencies supports recommendations suggestions conflicting providing replacing recipes).each do |hash_arg|
            self[hash_arg.to_sym] = Hashie::Mash.new
          end
        end