httpd_configmap_generator 0.3.1 → 0.3.2
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/.gitignore +0 -2
- data/Dockerfile +2 -0
- data/Gemfile.lock +101 -0
- data/lib/httpd_configmap_generator/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74ce527f79c3ee674c52b811ae9075dc19eab97f5e5d7fe53e01a01ba95d41d1
|
|
4
|
+
data.tar.gz: e5fa88f3cb90605d125a188f16ab5f98d6ee517c6e42b4d77d573c630ae79a19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ce0ad42aad3f3b7ba09d1370e0a4efe05c888fa01b7c45bc78da1871802cb515b419c6deed83b8cd8d7a3b329c3d9cf3b9907395ee6f96dbf5c0be983ae2b6d
|
|
7
|
+
data.tar.gz: f6c95ce7d686c3330d06b12cbaf8d8320d769b244320e83973128c45ff55841f7030a7be03b31a039358ca822ed7ae8c85f26bfc8e541b1ea15c75ecd1cc4f2a
|
data/.gitignore
CHANGED
data/Dockerfile
CHANGED
|
@@ -14,9 +14,11 @@ ENV HTTPD_AUTH_TYPE=internal \
|
|
|
14
14
|
RUN dnf -y --disableplugin=subscription-manager install \
|
|
15
15
|
https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
|
|
16
16
|
dnf -y --disableplugin=subscription-manager install \
|
|
17
|
+
authselect-compat \
|
|
17
18
|
openldap-clients \
|
|
18
19
|
pamtester && \
|
|
19
20
|
dnf clean all && \
|
|
20
21
|
rm -rf /var/cache/dnf
|
|
21
22
|
|
|
23
|
+
RUN bundle config --global without development:test
|
|
22
24
|
RUN gem install --no-document httpd_configmap_generator
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
httpd_configmap_generator (0.3.2)
|
|
5
|
+
activesupport (>= 5.0)
|
|
6
|
+
awesome_spawn (~> 1.4)
|
|
7
|
+
iniparse (~> 1.4)
|
|
8
|
+
more_core_extensions (~> 3.4)
|
|
9
|
+
optimist (~> 3.0)
|
|
10
|
+
|
|
11
|
+
GEM
|
|
12
|
+
remote: https://rubygems.org/
|
|
13
|
+
specs:
|
|
14
|
+
activesupport (6.1.4.1)
|
|
15
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
16
|
+
i18n (>= 1.6, < 2)
|
|
17
|
+
minitest (>= 5.1)
|
|
18
|
+
tzinfo (~> 2.0)
|
|
19
|
+
zeitwerk (~> 2.3)
|
|
20
|
+
ast (2.4.2)
|
|
21
|
+
awesome_spawn (1.5.0)
|
|
22
|
+
concurrent-ruby (1.1.9)
|
|
23
|
+
diff-lcs (1.4.4)
|
|
24
|
+
docile (1.4.0)
|
|
25
|
+
i18n (1.8.10)
|
|
26
|
+
concurrent-ruby (~> 1.0)
|
|
27
|
+
iniparse (1.5.0)
|
|
28
|
+
manageiq-style (1.3.1)
|
|
29
|
+
more_core_extensions
|
|
30
|
+
optimist
|
|
31
|
+
rubocop (~> 1.13)
|
|
32
|
+
rubocop-performance
|
|
33
|
+
rubocop-rails
|
|
34
|
+
minitest (5.14.4)
|
|
35
|
+
more_core_extensions (3.8.0)
|
|
36
|
+
activesupport
|
|
37
|
+
optimist (3.0.1)
|
|
38
|
+
parallel (1.21.0)
|
|
39
|
+
parser (3.0.2.0)
|
|
40
|
+
ast (~> 2.4.1)
|
|
41
|
+
rack (2.2.3)
|
|
42
|
+
rainbow (3.0.0)
|
|
43
|
+
rake (13.0.6)
|
|
44
|
+
regexp_parser (2.1.1)
|
|
45
|
+
rexml (3.2.5)
|
|
46
|
+
rspec (3.10.0)
|
|
47
|
+
rspec-core (~> 3.10.0)
|
|
48
|
+
rspec-expectations (~> 3.10.0)
|
|
49
|
+
rspec-mocks (~> 3.10.0)
|
|
50
|
+
rspec-core (3.10.1)
|
|
51
|
+
rspec-support (~> 3.10.0)
|
|
52
|
+
rspec-expectations (3.10.1)
|
|
53
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
54
|
+
rspec-support (~> 3.10.0)
|
|
55
|
+
rspec-mocks (3.10.2)
|
|
56
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
57
|
+
rspec-support (~> 3.10.0)
|
|
58
|
+
rspec-support (3.10.2)
|
|
59
|
+
rubocop (1.22.1)
|
|
60
|
+
parallel (~> 1.10)
|
|
61
|
+
parser (>= 3.0.0.0)
|
|
62
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
63
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
64
|
+
rexml
|
|
65
|
+
rubocop-ast (>= 1.12.0, < 2.0)
|
|
66
|
+
ruby-progressbar (~> 1.7)
|
|
67
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
68
|
+
rubocop-ast (1.12.0)
|
|
69
|
+
parser (>= 3.0.1.1)
|
|
70
|
+
rubocop-performance (1.11.5)
|
|
71
|
+
rubocop (>= 1.7.0, < 2.0)
|
|
72
|
+
rubocop-ast (>= 0.4.0)
|
|
73
|
+
rubocop-rails (2.12.2)
|
|
74
|
+
activesupport (>= 4.2.0)
|
|
75
|
+
rack (>= 1.1)
|
|
76
|
+
rubocop (>= 1.7.0, < 2.0)
|
|
77
|
+
ruby-progressbar (1.11.0)
|
|
78
|
+
simplecov (0.21.2)
|
|
79
|
+
docile (~> 1.1)
|
|
80
|
+
simplecov-html (~> 0.11)
|
|
81
|
+
simplecov_json_formatter (~> 0.1)
|
|
82
|
+
simplecov-html (0.12.3)
|
|
83
|
+
simplecov_json_formatter (0.1.3)
|
|
84
|
+
tzinfo (2.0.4)
|
|
85
|
+
concurrent-ruby (~> 1.0)
|
|
86
|
+
unicode-display_width (2.1.0)
|
|
87
|
+
zeitwerk (2.4.2)
|
|
88
|
+
|
|
89
|
+
PLATFORMS
|
|
90
|
+
ruby
|
|
91
|
+
x86_64-darwin-19
|
|
92
|
+
|
|
93
|
+
DEPENDENCIES
|
|
94
|
+
httpd_configmap_generator!
|
|
95
|
+
manageiq-style
|
|
96
|
+
rake
|
|
97
|
+
rspec (~> 3.0)
|
|
98
|
+
simplecov
|
|
99
|
+
|
|
100
|
+
BUNDLED WITH
|
|
101
|
+
2.2.24
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: httpd_configmap_generator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Httpd Auth Config Developers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-10-
|
|
11
|
+
date: 2021-10-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: manageiq-style
|
|
@@ -153,6 +153,7 @@ files:
|
|
|
153
153
|
- ".yamllint"
|
|
154
154
|
- Dockerfile
|
|
155
155
|
- Gemfile
|
|
156
|
+
- Gemfile.lock
|
|
156
157
|
- LICENSE
|
|
157
158
|
- README-active-directory.md
|
|
158
159
|
- README-ipa.md
|