abiquo-etk 0.6.2 → 0.6.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/Rakefile +1 -1
- data/VERSION +2 -1
- data/lib/abicli/commands/set.rb +3 -1
- metadata +7 -6
data/Rakefile
CHANGED
|
@@ -9,7 +9,7 @@ begin
|
|
|
9
9
|
gem.description = %Q{Tools to troubleshoot and manage your Abiquo installation}
|
|
10
10
|
gem.email = "srubio@abiquo.com"
|
|
11
11
|
gem.homepage = "http://github.com/abiquo/abiquo-etk"
|
|
12
|
-
gem.authors = ["Sergio Rubio"]
|
|
12
|
+
gem.authors = ["Sergio Rubio","Abel Boldú"]
|
|
13
13
|
gem.version = File.read 'VERSION'
|
|
14
14
|
gem.add_dependency(%q<nokogiri>, [">= 1.3"])
|
|
15
15
|
gem.add_dependency(%q<rpm-utils>, [">= 0.1"])
|
data/VERSION
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.3
|
|
2
|
+
|
data/lib/abicli/commands/set.rb
CHANGED
|
@@ -14,8 +14,10 @@ if ARGV[0] == 'set'
|
|
|
14
14
|
load File.dirname(__FILE__) + "/set18.ext"
|
|
15
15
|
elsif rel_info =~ /Version: 2\.0/
|
|
16
16
|
load File.dirname(__FILE__) + "/set20.ext"
|
|
17
|
-
elsif rel_info =~ /Version: 2\.2/
|
|
17
|
+
elsif rel_info =~ /Version: 2\.2(.*)/
|
|
18
18
|
load File.dirname(__FILE__) + "/set22.ext"
|
|
19
|
+
elsif rel_info =~ /Version: 2\.4(.*)/
|
|
20
|
+
load File.dirname(__FILE__) + "/set24.ext"
|
|
19
21
|
else
|
|
20
22
|
$stderr.puts "Abiquo release version not found. Unsupported installation."
|
|
21
23
|
exit
|
metadata
CHANGED
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: abiquo-etk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 1
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 6
|
|
9
|
-
-
|
|
10
|
-
version: 0.6.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.6.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Sergio Rubio
|
|
14
|
+
- "Abel Bold\xC3\xBA"
|
|
14
15
|
autorequire:
|
|
15
16
|
bindir: bin
|
|
16
17
|
cert_chain: []
|
|
17
18
|
|
|
18
|
-
date: 2012-
|
|
19
|
+
date: 2012-10-10 00:00:00 Z
|
|
19
20
|
dependencies:
|
|
20
21
|
- !ruby/object:Gem::Dependency
|
|
21
22
|
name: nokogiri
|
|
@@ -96,10 +97,10 @@ dependencies:
|
|
|
96
97
|
description: Tools to troubleshoot and manage your Abiquo installation
|
|
97
98
|
email: srubio@abiquo.com
|
|
98
99
|
executables:
|
|
99
|
-
- ciab-setup
|
|
100
100
|
- abiquo-check-install
|
|
101
|
-
- abiquo-check-16-install
|
|
102
101
|
- abicli
|
|
102
|
+
- abiquo-check-16-install
|
|
103
|
+
- ciab-setup
|
|
103
104
|
extensions: []
|
|
104
105
|
|
|
105
106
|
extra_rdoc_files:
|