Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
agnoster committed Nov 22, 2012
1 parent 1db505f commit 37baf6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/hoboku/cli.rb
Expand Up @@ -43,8 +43,8 @@ def self.exit_on_failure?
desc "vm", "manage VMs"
subcommand "vm", VM
map 'ssh' => 'vm:ssh'
map 'start' => 'vm:start'
map 'stop' => 'vm:stop'
map 'start' => 'vm:up'
map 'stop' => 'vm:suspend'
map 'status' => 'vm:status'

def method_missing(meth, *args)
Expand Down
4 changes: 2 additions & 2 deletions lib/hoboku/vm.rb
Expand Up @@ -37,8 +37,8 @@ def exec(*args)

def vagrant
@vagrant ||= Vagrant::Environment.new(
cwd: dir,
ui_class: Vagrant::UI::Colored
:cwd => dir,
:ui_class => Vagrant::UI::Colored
).tap do |env|
env.load!
end
Expand Down

0 comments on commit 37baf6d

Please sign in to comment.