Sha256: 4102c02b2448453120ebe849f98b04c7f78bd23cadae5971e4ea67d3f9bea3b7
Contents?: true
Size: 727 Bytes
Versions: 4
Compression:
Stored size: 727 Bytes
Contents
vagrant_cloud ============= *Very* minimalistic ruby wrapper for the [Vagrant Cloud API](https://vagrantcloud.com/api). Consisting of four basic classes for your *account*, *boxes*, *versions* and *providers*. Usage ----- The *vagrant_cloud* gem is hosted on [RubyGems](https://rubygems.org/gems/vagrant_cloud), see installation instructions there. Example usage: ```ruby account = VagrantCloud::Account.new('<username>', '<access_token>') box = vagrant_cloud.ensure_box('my_box') version = box.ensure_version('0.0.1') provider_foo = version.ensure_provider('foo', 'http://example.com/foo.box') provider_bar = version.ensure_provider('bar', 'http://example.com/bar.box') version.release puts provider_foo.download_url ```
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
vagrant_cloud-0.3.0 | README.md |
vagrant_cloud-0.2.3 | README.md |
vagrant_cloud-0.2.2 | README.md |
vagrant_cloud-0.2.1 | README.md |