From 9bdff4c5070c873737e1ad94746d30eef2b66aeb Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 17 Dec 2011 19:53:57 -0800 Subject: [PATCH] Styling --- lib/vagrant.rb | 22 +++++++++++----------- lib/vagrant/command.rb | 30 +++++++++++++++--------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/lib/vagrant.rb b/lib/vagrant.rb index 5d74f6554..990b77282 100644 --- a/lib/vagrant.rb +++ b/lib/vagrant.rb @@ -94,18 +94,18 @@ end I18n.load_path << File.expand_path("templates/locales/en.yml", Vagrant.source_root) # Register the built-in commands -Vagrant.commands.register(:box) { Vagrant::Command::Box } -Vagrant.commands.register(:destroy) { Vagrant::Command::Destroy } -Vagrant.commands.register(:halt) { Vagrant::Command::Halt } -Vagrant.commands.register(:package) { Vagrant::Command::Package } -Vagrant.commands.register(:provision) { Vagrant::Command::Provision } -Vagrant.commands.register(:reload) { Vagrant::Command::Reload } -Vagrant.commands.register(:resume) { Vagrant::Command::Resume } -Vagrant.commands.register(:ssh) { Vagrant::Command::SSH } +Vagrant.commands.register(:box) { Vagrant::Command::Box } +Vagrant.commands.register(:destroy) { Vagrant::Command::Destroy } +Vagrant.commands.register(:halt) { Vagrant::Command::Halt } +Vagrant.commands.register(:package) { Vagrant::Command::Package } +Vagrant.commands.register(:provision) { Vagrant::Command::Provision } +Vagrant.commands.register(:reload) { Vagrant::Command::Reload } +Vagrant.commands.register(:resume) { Vagrant::Command::Resume } +Vagrant.commands.register(:ssh) { Vagrant::Command::SSH } Vagrant.commands.register(:"ssh-config") { Vagrant::Command::SSHConfig } -Vagrant.commands.register(:status) { Vagrant::Command::Status } -Vagrant.commands.register(:suspend) { Vagrant::Command::Suspend } -Vagrant.commands.register(:up) { Vagrant::Command::Up } +Vagrant.commands.register(:status) { Vagrant::Command::Status } +Vagrant.commands.register(:suspend) { Vagrant::Command::Suspend } +Vagrant.commands.register(:up) { Vagrant::Command::Up } # Register the built-in config keys Vagrant.config_keys.register(:vagrant) { Vagrant::Config::VagrantConfig } diff --git a/lib/vagrant/command.rb b/lib/vagrant/command.rb index b8a3fc49e..2c6f6da26 100644 --- a/lib/vagrant/command.rb +++ b/lib/vagrant/command.rb @@ -2,21 +2,21 @@ module Vagrant module Command autoload :Base, 'vagrant/command/base' - autoload :Box, 'vagrant/command/box' - autoload :BoxAdd, 'vagrant/command/box_add' - autoload :BoxRemove, 'vagrant/command/box_remove' + autoload :Box, 'vagrant/command/box' + autoload :BoxAdd, 'vagrant/command/box_add' + autoload :BoxRemove, 'vagrant/command/box_remove' autoload :BoxRepackage, 'vagrant/command/box_repackage' - autoload :BoxList, 'vagrant/command/box_list' - autoload :Destroy, 'vagrant/command/destroy' - autoload :Halt, 'vagrant/command/halt' - autoload :Package, 'vagrant/command/package' - autoload :Provision, 'vagrant/command/provision' - autoload :Reload, 'vagrant/command/reload' - autoload :Resume, 'vagrant/command/resume' - autoload :SSH, 'vagrant/command/ssh' - autoload :SSHConfig, 'vagrant/command/ssh_config' - autoload :Status, 'vagrant/command/status' - autoload :Suspend, 'vagrant/command/suspend' - autoload :Up, 'vagrant/command/up' + autoload :BoxList, 'vagrant/command/box_list' + autoload :Destroy, 'vagrant/command/destroy' + autoload :Halt, 'vagrant/command/halt' + autoload :Package, 'vagrant/command/package' + autoload :Provision, 'vagrant/command/provision' + autoload :Reload, 'vagrant/command/reload' + autoload :Resume, 'vagrant/command/resume' + autoload :SSH, 'vagrant/command/ssh' + autoload :SSHConfig, 'vagrant/command/ssh_config' + autoload :Status, 'vagrant/command/status' + autoload :Suspend, 'vagrant/command/suspend' + autoload :Up, 'vagrant/command/up' end end