Sha256: 1a5ce7dc9fb42eb115a7fd544d94c78f768268a06ac879e37576722c124582e8

Contents?: true

Size: 1.98 KB

Versions: 2

Compression:

Stored size: 1.98 KB

Contents

# Vagrant::Boxen

[![Build Status](https://travis-ci.org/fgrehm/vagrant-boxen.png)](https://travis-ci.org/fgrehm/vagrant-boxen)
[![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/fgrehm/vagrant-boxen)

Inspired by [Rails Wizard](http://railswizard.org/) and GitHub's
[Boxen](http://boxen.github.com/), this gem attempts to lower the "entry barrier"
of getting a manageable Vagrant machine targetted for development up and
running without the need to learn [Puppet](https://puppetlabs.com/puppet/what-is-puppet/)
or [Chef](http://www.opscode.com/chef/).


## Installation

If you use the gem version of Vagrant, use:

```terminal
$ gem install vagrant-boxen
```

otherwise, use:

```terminal
$ vagrant gem install vagrant-boxen
```


## Usage

For now, the only module available is `memcached` and you can set it up on your
`Vagrantfile` with:

```ruby
Vagrant::Config.run do |config|
  # ... other settings ...
  config.vm.provision Vagrant::Boxen::Provisioner do |boxen|
    boxen.memcached!
  end
end
```

While the modules provided might work on most linux distributions, I'm testing
it all the time on a Ubuntu 12.10 64bits box based on https://github.com/downloads/roderik/VagrantQuantal64Box/quantal64.box

To find out more about the planned functionality, check out the
[project's issues](https://github.com/fgrehm/vagrant-boxen/issues).


## How does it work?

Under the hood, [`Vagrant::Boxen::Provisioner`](https://github.com/fgrehm/vagrant-boxen/blob/master/lib/vagrant-boxen/provisioner.rb)
will take care of generating the puppet manifest that will get passed to an instance of
[`Vagrant::Provisioners::Puppet`](https://github.com/mitchellh/vagrant/blob/1-0-stable/lib/vagrant/provisioners/puppet.rb)
and will be applied to the guest machine.


## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-boxen-0.0.2 README.md
vagrant-boxen-0.0.1 README.md