rboss 0.7.1 → 0.7.2
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/lib/rboss/cli/resource.rb +4 -8
- data/lib/rboss/version.rb +1 -1
- metadata +2 -2
data/lib/rboss/cli/resource.rb
CHANGED
|
@@ -97,10 +97,8 @@ module RBoss
|
|
|
97
97
|
table.aliases = %w(name type required default)
|
|
98
98
|
table.colorize('name', :with => :white)
|
|
99
99
|
|
|
100
|
-
table.
|
|
101
|
-
|
|
102
|
-
RBoss::Colorizers.type(value['type']).color_for(value)
|
|
103
|
-
end
|
|
100
|
+
table.colorize %w(type default) do |value|
|
|
101
|
+
RBoss::Colorizers.type(value['type']).color_for(value)
|
|
104
102
|
end
|
|
105
103
|
|
|
106
104
|
table.format 'required', :using => Yummi::Formatters.boolean
|
|
@@ -121,10 +119,8 @@ module RBoss
|
|
|
121
119
|
|
|
122
120
|
table.colorize 'name', :with => :white
|
|
123
121
|
|
|
124
|
-
table.
|
|
125
|
-
|
|
126
|
-
RBoss::Colorizers.type(value['type']).color_for(value)
|
|
127
|
-
end
|
|
122
|
+
table.colorize 'type' do |value|
|
|
123
|
+
RBoss::Colorizers.type(value['type']).color_for(value)
|
|
128
124
|
end
|
|
129
125
|
|
|
130
126
|
table.format 'nilable', :using => Yummi::Formatters.boolean
|
data/lib/rboss/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rboss
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.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: 2012-11-
|
|
12
|
+
date: 2012-11-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: ! "Rboss gives you an automate tool to configure a JBoss instance\n and
|
|
15
15
|
a nice command line front end to use jboss-cli and twiddle"
|