vagrant/plugins
Mitchell Hashimoto 00aba5ac03 Plugin easy commands.
Easy commands are well... easy! They don't offer the full power of
creating a completely custom command class, but they let you do the
basics (what almost everyone needs) with minimal fuss. Example:

class MyPlugin < Vagrant.plugin("1")
  name "my-plugin"

  easy_command "foo" do |action|
    puts "HELLO!"
  end
end

NOTE: The "action" stuff isn't done yet, but will be soon!
2012-05-05 18:57:29 -07:00
..
commands Plugin easy commands. 2012-05-05 18:57:29 -07:00
guests Better directory structure for plugins 2012-04-20 16:53:01 -07:00
hosts Better directory structure for plugins 2012-04-20 16:53:01 -07:00
kernel Move provisioners into plugins 2012-04-18 21:53:19 -07:00
provisioners Don't support passing in the config into Chef anymore 2012-05-01 22:04:09 -07:00
README.md Add README to plugin directory 2012-04-18 17:48:06 -07:00

README.md

Vagrant Core Plugins

These are plugins that ship with Vagrant. Vagrant core uses its own plugin system to power a lot of the core pieces that ship with Vagrant. Each plugin will have its own README which explains its specific role.