vagrant_bootstrap 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore CHANGED
@@ -11,6 +11,7 @@ pkg
11
11
  rdoc
12
12
  .rvmrc
13
13
  spec/reports
14
+ tags
14
15
  test/tmp
15
16
  test/version_tmp
16
17
  tmp
data/README.md CHANGED
@@ -20,7 +20,7 @@ Or install it yourself as:
20
20
 
21
21
  ## Usage
22
22
 
23
- $ vgbs [name] [-b adapter]
23
+ $ vagbs [name] [-b adapter]
24
24
 
25
25
  Create a Vagrantfile in a directory. Optionally, supply a name and/or bridge
26
26
  adapter. If no name or bridge adapter is specified, sane defaults are used.
data/bin/{vgbs → vagbs} RENAMED
File without changes
@@ -13,10 +13,10 @@ module VagrantBootstrap
13
13
  Easily generate a Vagrantfile in a namespaced directory
14
14
 
15
15
  Usage:
16
- vgbs [name] [-b adapter]
16
+ vagbs [name] [-b adapter]
17
17
 
18
18
  If specified, the name will be used to calculate the directory name and
19
- hostname of the VM, e.g. 'vgbs taco' will yield a directory and hostname of
19
+ hostname of the VM, e.g. 'vagbs taco' will yield a directory and hostname of
20
20
  '%{name}')
21
21
  EOS
22
22
 
@@ -1,3 +1,3 @@
1
1
  module VagrantBootstrap
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant_bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
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: 2012-07-10 00:00:00.000000000 Z
12
+ date: 2012-07-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: trollop
@@ -31,7 +31,7 @@ description: Easily generate a Vagrantfile in a namespaced directory
31
31
  email:
32
32
  - justin.force@gmail.com
33
33
  executables:
34
- - vgbs
34
+ - vagbs
35
35
  extensions: []
36
36
  extra_rdoc_files: []
37
37
  files:
@@ -40,7 +40,7 @@ files:
40
40
  - LICENSE
41
41
  - README.md
42
42
  - Rakefile
43
- - bin/vgbs
43
+ - bin/vagbs
44
44
  - lib/vagrant_bootstrap.rb
45
45
  - lib/vagrant_bootstrap/bootstrap.rb
46
46
  - lib/vagrant_bootstrap/cli.rb