lib/vagrant-libvirt/plugin.rb in vagrant-libvirt-0.0.36 vs lib/vagrant-libvirt/plugin.rb in vagrant-libvirt-0.0.37

- old
+ new

@@ -27,25 +27,24 @@ action_hook(:remove_libvirt_image) do |hook| hook.after Vagrant::Action::Builtin::BoxRemove, Action.remove_libvirt_image end - guest_capability('linux', 'mount_p9_shared_folder') do require_relative 'cap/mount_p9' Cap::MountP9 end provider_capability(:libvirt, :nic_mac_addresses) do - require_relative "cap/nic_mac_addresses" + require_relative 'cap/nic_mac_addresses' Cap::NicMacAddresses end # lower priority than nfs or rsync # https://github.com/vagrant-libvirt/vagrant-libvirt/pull/170 - synced_folder("9p", 4) do - require_relative "cap/synced_folder" + synced_folder('9p', 4) do + require_relative 'cap/synced_folder' VagrantPlugins::SyncedFolder9p::SyncedFolder end # This initializes the internationalization strings. def self.setup_i18n @@ -69,11 +68,11 @@ end # Some constants, such as "true" resolve to booleans, so the # above error checking doesn't catch it. This will check to make # sure that the log level is an integer, as Log4r requires. - level = nil if !level.is_a?(Integer) + level = nil unless level.is_a?(Integer) # Set the logging level on all "vagrant" namespaced # logs as long as we have a valid level. if level logger = Log4r::Logger.new('vagrant_libvirt') @@ -86,9 +85,8 @@ # Setup logging and i18n before any autoloading loads other classes # with logging configured as this prevents inheritance of the log level # from the parent logger. setup_logging setup_i18n - end end end