Provider represents a single provider-specific box available for a version for a box.
The checksum value for this box, if any.
@return [String]
The type of checksum (if any) associated with this provider.
@return [String]
The name of the provider.
@return [String]
The URL of the box.
@return [String]
# File lib/vagrant/box_metadata.rb, line 135 def initialize(raw) @name = raw["name"] @url = raw["url"] @checksum = raw["checksum"] @checksum_type = raw["checksum_type"] end