crowbar-client 1.0.0 → 1.0.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/crowbar/client/app.rb +2 -2
- data/lib/crowbar/client/app/host_ip.rb +2 -2
- data/lib/crowbar/client/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc7312620bcab988a42d54a0c96e90e22562757a
|
|
4
|
+
data.tar.gz: 1df4b71c34c8c0857c2ab3893db09ceb6efcbd70
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cf3069b73cd4d7cc3e97950e616df935169331a6311e2b7d9556b13844c217d2b15ac3b365bd26354711610b2ba2e23dcdb8368881325e69e75e27da56f0a02
|
|
7
|
+
data.tar.gz: 7fbbed8b5aae8c3164c8cd7005133b0f689654dd4ef17e089abbef0448f534296dcfecac80d1ecb51181d6d17627e8c11e9462da4fa2008be944610e65be24b4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.1](https://github.com/crowbar/crowbar-client/releases/tag/v1.0.1) - 2015-11-11
|
|
4
|
+
|
|
5
|
+
* Fixed typos for renaming of HostIP
|
|
6
|
+
* Fixed typos for renaming of VirtualIP
|
|
7
|
+
* Downgraded terminal-table dependency
|
|
3
8
|
|
|
4
9
|
## [1.0.0](https://github.com/crowbar/crowbar-client/releases/tag/v1.0.0) - 2015-11-11
|
|
5
10
|
|
data/lib/crowbar/client/app.rb
CHANGED
|
@@ -29,7 +29,7 @@ module Crowbar
|
|
|
29
29
|
autoload :Entry,
|
|
30
30
|
File.expand_path("../app/entry", __FILE__)
|
|
31
31
|
|
|
32
|
-
autoload :
|
|
32
|
+
autoload :HostIP,
|
|
33
33
|
File.expand_path("../app/host_ip", __FILE__)
|
|
34
34
|
|
|
35
35
|
autoload :Interface,
|
|
@@ -53,7 +53,7 @@ module Crowbar
|
|
|
53
53
|
autoload :Role,
|
|
54
54
|
File.expand_path("../app/role", __FILE__)
|
|
55
55
|
|
|
56
|
-
autoload :
|
|
56
|
+
autoload :VirtualIP,
|
|
57
57
|
File.expand_path("../app/virtual_ip", __FILE__)
|
|
58
58
|
end
|
|
59
59
|
end
|
|
@@ -27,7 +27,7 @@ module Crowbar
|
|
|
27
27
|
LONGDESC
|
|
28
28
|
|
|
29
29
|
def allocate(proposal, node, network, range, suggestion = nil)
|
|
30
|
-
Command::
|
|
30
|
+
Command::HostIP::Allocate.new(
|
|
31
31
|
*command_params(
|
|
32
32
|
proposal: proposal,
|
|
33
33
|
node: node,
|
|
@@ -49,7 +49,7 @@ module Crowbar
|
|
|
49
49
|
LONGDESC
|
|
50
50
|
|
|
51
51
|
def deallocate(proposal, node, network)
|
|
52
|
-
Command::
|
|
52
|
+
Command::HostIP::Allocate.new(
|
|
53
53
|
*command_params(
|
|
54
54
|
proposal: proposal,
|
|
55
55
|
node: node,
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: crowbar-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas Boerger
|
|
@@ -156,14 +156,14 @@ dependencies:
|
|
|
156
156
|
requirements:
|
|
157
157
|
- - ">="
|
|
158
158
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: 1.5
|
|
159
|
+
version: 1.4.5
|
|
160
160
|
type: :runtime
|
|
161
161
|
prerelease: false
|
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
|
163
163
|
requirements:
|
|
164
164
|
- - ">="
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
|
-
version: 1.5
|
|
166
|
+
version: 1.4.5
|
|
167
167
|
- !ruby/object:Gem::Dependency
|
|
168
168
|
name: easy_diff
|
|
169
169
|
requirement: !ruby/object:Gem::Requirement
|