alpha_omega 0.0.55 → 0.0.56

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.
File without changes
@@ -27,7 +27,7 @@ module AlphaOmega
27
27
  end
28
28
  end
29
29
 
30
- def self.what_pods (node_home)
30
+ def self.what_pods (config, node_home)
31
31
  pods = {
32
32
  "default" => {
33
33
  "nodes_spec" => "#{node_home}/nodes/*.json",
@@ -35,7 +35,7 @@ module AlphaOmega
35
35
  }
36
36
  }
37
37
 
38
- yield "default", pods["default"]
38
+ yield config, "default", pods["default"]
39
39
 
40
40
  this_host = Socket.gethostname.chomp.split(".")[0]
41
41
  this_node = JSON.load(File.read("#{node_home}/nodes/#{this_host}.json"))
@@ -45,7 +45,7 @@ module AlphaOmega
45
45
  "node_suffix" => ".#{pod_name}"
46
46
  }
47
47
 
48
- yield pod_name, pods[pod_name]
48
+ yield config, pod_name, pods[pod_name]
49
49
  end
50
50
 
51
51
  pods
@@ -1,3 +1,3 @@
1
1
  module AlphaOmega
2
- Version = "0.0.55"
2
+ Version = "0.0.56"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alpha_omega
3
3
  version: !ruby/object:Gem::Version
4
- hash: 113
4
+ hash: 111
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 55
10
- version: 0.0.55
9
+ - 56
10
+ version: 0.0.56
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Nghiem
@@ -107,7 +107,7 @@ email:
107
107
  - nghidav@gmail.com
108
108
  - amanibhavam@destructuring.org
109
109
  executables:
110
- - deploy
110
+ - alpha_omega
111
111
  extensions: []
112
112
 
113
113
  extra_rdoc_files: []
@@ -137,7 +137,7 @@ files:
137
137
  - lib/alpha_omega/deploy/local_dependency.rb
138
138
  - lib/alpha_omega/deploy/scm/git.rb
139
139
  - lib/alpha_omega/deploy/scm/base.rb
140
- - bin/deploy
140
+ - bin/alpha_omega
141
141
  homepage: https://github.com/HeSYINUvSBZfxqA/alpha_omega
142
142
  licenses: []
143
143