vagrant/plugins/commands
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
..
box Fix some basic mistakes with commands 2012-04-21 17:32:13 -07:00
destroy Better directory structure for plugins 2012-04-20 16:53:01 -07:00
gem Better directory structure for plugins 2012-04-20 16:53:01 -07:00
halt Better directory structure for plugins 2012-04-20 16:53:01 -07:00
init Better directory structure for plugins 2012-04-20 16:53:01 -07:00
package Better directory structure for plugins 2012-04-20 16:53:01 -07:00
provision Better directory structure for plugins 2012-04-20 16:53:01 -07:00
reload Plugin easy commands. 2012-05-05 18:57:29 -07:00
resume Better directory structure for plugins 2012-04-20 16:53:01 -07:00
ssh Better directory structure for plugins 2012-04-20 16:53:01 -07:00
ssh_config Better directory structure for plugins 2012-04-20 16:53:01 -07:00
status Better directory structure for plugins 2012-04-20 16:53:01 -07:00
suspend Better directory structure for plugins 2012-04-20 16:53:01 -07:00
up Better directory structure for plugins 2012-04-20 16:53:01 -07:00