vagrant-vbguest 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ ## 0.6.2 (2013-01-18)
2
+
3
+ - Fix typos and wording in error messages and I18n keys
4
+ et al. [GH-38]
5
+
1
6
  ## 0.6.1 (2012-01-13)
2
7
 
3
8
  - Fix missing command output block and parameters for
@@ -32,7 +32,7 @@ module VagrantVbguest
32
32
  while (command = runlist.shift)
33
33
  @logger.debug("Running command #{command} from runlist")
34
34
  if !self.send(command)
35
- vm.ui.error('vagrant.plugins.vbguest.machine_loop_gard', :command => command, :state => current_state)
35
+ vm.ui.error('vagrant.plugins.vbguest.machine_loop_guard', :command => command, :state => current_state)
36
36
  return false
37
37
  end
38
38
  return run if current_state != state
@@ -41,12 +41,12 @@ module VagrantVbguest
41
41
  end
42
42
 
43
43
  def install
44
- return @vm.ui.warn(I18n.t("vagrant.plugins.vbguest.skiped_installation")) if options[:no_install] && !options[:force]
44
+ return @vm.ui.warn(I18n.t("vagrant.plugins.vbguest.skipped_installation")) if options[:no_install] && !options[:force]
45
45
  @ga_machine.trigger :install
46
46
  end
47
47
 
48
48
  def rebuild
49
- return @vm.ui.warn(I18n.t("vagrant.plugins.vbguest.skiped_rebuild")) if options[:no_install] && !options[:force]
49
+ return @vm.ui.warn(I18n.t("vagrant.plugins.vbguest.skipped_rebuild")) if options[:no_install] && !options[:force]
50
50
  @ga_machine.trigger :rebuild
51
51
  end
52
52
 
@@ -1,3 +1,3 @@
1
1
  module VagrantVbguest
2
- VERSION = "0.6.1"
2
+ VERSION = "0.6.2"
3
3
  end
@@ -2,17 +2,17 @@ en:
2
2
  vagrant:
3
3
  plugins:
4
4
  vbguest:
5
- skiped_installation: "Updating GuestAdditions skipped."
6
- skiped_rebuild: "Rebuilding GuestAdditions skipped."
5
+ skipped_installation: "Updating GuestAdditions skipped."
6
+ skipped_rebuild: "Rebuilding GuestAdditions skipped."
7
7
  installing: "Installing Virtualbox Guest Additions %{installer_version} - guest version is %{guest_version}"
8
8
  installing_forced: "Forcing installation of Virtualbox Guest Additions %{installer_version} - guest version is %{guest_version}"
9
9
  rebuild: "Rebuilding Virtualbox Guest Additions %{guest_version} (Your host version is %{host_version})"
10
10
  rebuild_forced: "Forcing rebuilding of Virtualbox Guest Additions %{guest_version} (Your host version is %{host_version})"
11
11
  start_copy_iso: "Copy iso file %{from} into the box %{to}"
12
12
  restart_vm: "Restarting VM to apply changes..."
13
- suggest_restart: "Guest Additions got installed. However, they seem not be loaded correctly. Please restart the box runing `vagrant reload %{name}`"
13
+ suggest_restart: "Guest Additions got installed. However, they seem not be loaded correctly. Please restart the box running `vagrant reload %{name}`"
14
14
  restart_loop_guard_activated: "Guest Additions will not load, even after reboot."
15
- machine_loop_gard: "Could not execute %{command} from current state %{state}. To prevent running in circles, we'll stop."
15
+ machine_loop_guard: "Could not execute %{command} from current state %{state}. To prevent running in circles, we'll stop."
16
16
  guest_version_reports_differ: |-
17
17
  Got different reports about installed GuestAdditions version:
18
18
  Virtualbox on your host claims: %{driver}
@@ -28,17 +28,17 @@ en:
28
28
 
29
29
  errors:
30
30
  autodetect_iso_path: |-
31
- Could not autodetect a local of the Virtualbox Guest Additions iso file.
32
- Please configure a local path to the iso using `config.vbguest.iso_path`
31
+ Could not locate a local Virtualbox Guest Additions iso file.
32
+ Please configure a local path to the iso using `config.vbguest.iso_path`
33
33
  in your Vagrantfile or the `--iso` command line option.
34
34
  If you think this is a bug and vbguest could have guessed the iso_path,
35
- please file a bug: https://github.com/dotless-de/vagrant-vbguest/issues
35
+ please file an issue at: https://github.com/dotless-de/vagrant-vbguest/issues
36
36
 
37
37
  downloading_disabled: |-
38
38
  Could not locate a local Virtualbox Guest Additions iso file.
39
- However, the no_remote option was set and thus I will not downlownload it from
39
+ However, the no_remote option was set and thus I will not download it from
40
40
  %{from}
41
- Please configure a local path to the iso using `config.vbguest.iso_path`
41
+ Please configure a local path to the iso using `config.vbguest.iso_path`
42
42
  in your Vagrantfile or the `--iso` command line option.
43
43
 
44
44
  installer:
@@ -47,7 +47,7 @@ en:
47
47
  generic_linux_installer: |-
48
48
  The guest's platform is currently not supported, will try generic Linux method...
49
49
  do_not_inherit_match_method: |-
50
- Installer classes must proviode their own `match?` method.
50
+ Installer classes must provide their own `match?` method.
51
51
 
52
52
  download:
53
53
  with: "Downloading VirtualBox Guest Additions ISO with %{class}..."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vbguest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-13 00:00:00.000000000 Z
12
+ date: 2013-01-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: micromachine