rboss 0.8.2 → 0.8.3
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/bin/rboss-cli +1 -1
- data/lib/rboss/version.rb +1 -1
- data/rboss.gemspec +2 -0
- metadata +20 -4
data/bin/rboss-cli
CHANGED
|
@@ -96,7 +96,7 @@ opts.on('-l', '--list-operations', 'Lists the available operations for a resourc
|
|
|
96
96
|
@operation = 'read-operation-names'
|
|
97
97
|
end
|
|
98
98
|
|
|
99
|
-
opts.on('--detail-operation NAME', 'Shows the operation details') do |operation_name|
|
|
99
|
+
opts.on('-d', '--detail-operation NAME', 'Shows the operation details') do |operation_name|
|
|
100
100
|
@operation = 'read-operation-description'
|
|
101
101
|
@parameters = {'name' => operation_name}
|
|
102
102
|
end
|
data/lib/rboss/version.rb
CHANGED
data/rboss.gemspec
CHANGED
|
@@ -14,6 +14,8 @@ Gem::Specification.new do |s|
|
|
|
14
14
|
|
|
15
15
|
s.rubyforge_project = "rboss"
|
|
16
16
|
|
|
17
|
+
s.add_dependency 'yummi', '>=0.7.1'
|
|
18
|
+
|
|
17
19
|
s.files = `git ls-files`.split("\n")
|
|
18
20
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
21
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
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.8.
|
|
4
|
+
version: 0.8.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,8 +9,24 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
13
|
-
dependencies:
|
|
12
|
+
date: 2013-03-10 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: yummi
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 0.7.1
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 0.7.1
|
|
14
30
|
description: ! "Rboss gives you a set of command line tools to configure a JBoss instance\n
|
|
15
31
|
\ and use jboss-cli and twiddle wrapped by an elegant interface"
|
|
16
32
|
email:
|
|
@@ -103,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
119
|
version: '0'
|
|
104
120
|
requirements: []
|
|
105
121
|
rubyforge_project: rboss
|
|
106
|
-
rubygems_version: 1.8.
|
|
122
|
+
rubygems_version: 1.8.25
|
|
107
123
|
signing_key:
|
|
108
124
|
specification_version: 3
|
|
109
125
|
summary: Manage your JBoss from your command line.
|