vagabond 0.1.2 → 0.1.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## v0.1.4
2
+ * Fix color option to do the right thing
3
+
1
4
  ## v0.1.2
2
5
  * Added support for centos guests
3
6
  * Added new base templates for centos and debian
data/README.md CHANGED
@@ -14,6 +14,14 @@ easily and most importantly, quickly. It uses Linux containers
14
14
  instead of full blown VMs which means things are faster. Lots
15
15
  faster.
16
16
 
17
+ ## Installation
18
+
19
+ As a rubygem:
20
+
21
+ ```
22
+ $ gem install vagabond
23
+ ```
24
+
17
25
  ## How it is?
18
26
 
19
27
  Currently, this is built to run within a classic Chef repository.
@@ -88,7 +96,10 @@ Server:
88
96
  vagabond server upload_databags [options]
89
97
  vagabond server upload_environments [options]
90
98
  vagabond server upload_roles [options]
99
+ Knife:
100
+ vagabond knife COMMAND [knife_options]
91
101
  Options:
102
+ --color
92
103
  --debug
93
104
  --disable-auto-provision
94
105
  --disable-local-server
@@ -71,7 +71,7 @@ module Vagabond
71
71
  protected
72
72
 
73
73
  def setup_ui
74
- Chef::Config[:color] = Config[:color]
74
+ Chef::Config[:color] = Config[:color].nil? ? true : Config[:color]
75
75
  @ui = Chef::Knife::UI.new(STDOUT, STDERR, STDIN, {})
76
76
  self.class.ui = @ui
77
77
  end
@@ -6,5 +6,5 @@ module Vagabond
6
6
  super(v)
7
7
  end
8
8
  end
9
- VERSION = Version.new('0.1.2', 'bindle')
9
+ VERSION = Version.new('0.1.4', 'vagari')
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagabond
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -99,7 +99,6 @@ files:
99
99
  - lib/vagabond.rb
100
100
  - README.md
101
101
  - vagabond.gemspec
102
- - vagabond-0.1.0.gem
103
102
  - bin/vagabond
104
103
  - CHANGELOG.md
105
104
  homepage: http://github.com/chrisroberts/vagabond
data/vagabond-0.1.0.gem DELETED
Binary file