summaryrefslogtreecommitdiff
path: root/lib/leap_cli/commands/vagrant.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-11-30 13:31:27 -0800
committerelijah <elijah@riseup.net>2014-11-30 13:31:27 -0800
commit6d0f242eacdaec645c48c3db3e78ee3da8fff03c (patch)
tree467b859d37fccc4b886788452ef48b983053fd4c /lib/leap_cli/commands/vagrant.rb
parentc35b55cdf87d32382fc44a851166ec2cd15f5f4f (diff)
add command aliases for most commonly used commands.
Diffstat (limited to 'lib/leap_cli/commands/vagrant.rb')
-rw-r--r--lib/leap_cli/commands/vagrant.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/commands/vagrant.rb b/lib/leap_cli/commands/vagrant.rb
index 41fda03..31c7878 100644
--- a/lib/leap_cli/commands/vagrant.rb
+++ b/lib/leap_cli/commands/vagrant.rb
@@ -5,7 +5,7 @@ module LeapCli; module Commands
desc "Manage local virtual machines."
long_desc "This command provides a convient way to manage Vagrant-based virtual machines. If FILTER argument is missing, the command runs on all local virtual machines. The Vagrantfile is automatically generated in 'test/Vagrantfile'. If you want to run vagrant commands manually, cd to 'test'."
- command :local do |local|
+ command [:local, :l] do |local|
local.desc 'Starts up the virtual machine(s)'
local.arg_name 'FILTER', :optional => true #, :multiple => false
local.command :start do |start|