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
..
2012-05-05 18:28:07 -07:00
2012-04-18 17:16:03 -07:00
2012-05-05 18:57:29 -07:00
2012-03-23 10:26:29 -04:00
2012-04-19 21:33:26 -07:00
2012-04-18 17:16:03 -07:00
2012-01-07 21:16:40 -08:00
2012-05-05 18:57:29 -07:00
2012-05-05 13:08:07 -07:00
2012-04-19 21:28:24 -07:00
2012-04-19 21:27:16 -07:00
2012-05-05 12:57:31 -07:00
2012-03-18 17:45:49 -06:00
2012-03-28 22:08:55 -07:00
2012-04-18 21:03:03 -07:00