harbr 0.1.91 → 0.1.93
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/lib/harbr/job.rb +13 -4
- data/lib/harbr/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1f5082149e0be0577bcf732277c35f36094149b9d6ef964f9973fb57a510716b
|
|
4
|
+
data.tar.gz: 5bf6d0eadcb16de62fc84e2891a29ef7cff23824c2715db922f8570acec99b62
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '08bfab977f8e4085d7b39d0f312c5f48a11b3574c2154ff4baf24bcb0108f6d008d72ffb92b22f33581a2ff1591f016cdfd537f8b79a9143a591772b413b7970'
|
|
7
|
+
data.tar.gz: 7af2a943cc1a4835a720104c99bcb299ccaca9755d6efeea4b95ce67c46bc28d467fd4e9c6e5a06f0ef02ca4b3989d485fc828eae57663835b253151deaee7b4
|
data/lib/harbr/job.rb
CHANGED
|
@@ -68,16 +68,19 @@ module Harbr
|
|
|
68
68
|
containers.create(container) unless containers.find_by_header(host_header_alias)
|
|
69
69
|
|
|
70
70
|
if(container.name.start_with?("live"))
|
|
71
|
+
|
|
72
|
+
plain_name = host_header_alias.gsub("live.","")
|
|
71
73
|
container = Harbr::Container.new
|
|
72
|
-
container.name = "#{name} -> #{
|
|
73
|
-
container.host_header =
|
|
74
|
+
container.name = "#{name} -> #{plain_name}"
|
|
75
|
+
container.host_header = remove_dot_from_string(plain_name)
|
|
74
76
|
container.ip = "127.0.0.1"
|
|
75
77
|
container.port = port
|
|
76
78
|
|
|
77
|
-
|
|
79
|
+
|
|
80
|
+
unless containers.find_by_header(container.host_header)
|
|
78
81
|
containers.create(container)
|
|
79
82
|
end
|
|
80
|
-
|
|
83
|
+
|
|
81
84
|
end
|
|
82
85
|
|
|
83
86
|
end
|
|
@@ -86,6 +89,8 @@ module Harbr
|
|
|
86
89
|
containers.all
|
|
87
90
|
end
|
|
88
91
|
|
|
92
|
+
|
|
93
|
+
|
|
89
94
|
def write_to_file(path, contents)
|
|
90
95
|
dirname = File.dirname(path)
|
|
91
96
|
FileUtils.mkdir_p(dirname) unless File.directory?(dirname)
|
|
@@ -111,6 +116,10 @@ module Harbr
|
|
|
111
116
|
|
|
112
117
|
private
|
|
113
118
|
|
|
119
|
+
def remove_dot_from_string(str)
|
|
120
|
+
str.gsub('.', '')
|
|
121
|
+
end
|
|
122
|
+
|
|
114
123
|
def check_file_exists(path)
|
|
115
124
|
sleep_times = [1, 3, 5, 8, 23]
|
|
116
125
|
begin
|
data/lib/harbr/version.rb
CHANGED