hubrise_initializer 1.0.6 → 1.0.8
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/.github/workflows/rubocop.yml +8 -10
- data/.github/workflows/spec.yml +8 -10
- data/.rubocop.yml +11 -8
- data/Gemfile +3 -3
- data/Gemfile.lock +203 -148
- data/README.md +1 -1
- data/lib/hubrise_initializer/version.rb +1 -1
- data/lib/hubrise_initializer.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38a45b9d1b9a08bbd3e487b92aae96e8509c526ff9b2b0ef9c053be827bdb78c
|
4
|
+
data.tar.gz: e622574c20da51cd1dc6cf7b86344e200741066b5d410b7b78e8639db780cfdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ab69a87ceff155408cd2ea99ddde23e2d1e5e81d4eba4a740b9a170be232ba12233ba5865474a9f1a169d45d8bdd5b2d266d19968f95e97bda01b0e3d67a578
|
7
|
+
data.tar.gz: 1ce642806f6e829e591228fb36bc61e7920f26c8e4ac7316e2bc266533fbd19bd80a8544b2ee74e4c5016e78c54715cea1599e5ea4aa9fb4c03953de07ec09d4
|
@@ -1,21 +1,19 @@
|
|
1
1
|
name: rubocop
|
2
|
-
|
3
2
|
on: push
|
4
3
|
|
5
4
|
jobs:
|
6
|
-
|
5
|
+
rubocop:
|
7
6
|
runs-on: ubuntu-latest
|
8
|
-
name: Code style check
|
9
|
-
|
10
|
-
container:
|
11
|
-
image: ruby:2.7.6-bullseye
|
12
7
|
|
13
8
|
steps:
|
14
9
|
- name: Clone repository
|
15
|
-
uses: actions/checkout@
|
10
|
+
uses: actions/checkout@v4
|
16
11
|
|
17
|
-
- name: Install
|
18
|
-
|
12
|
+
- name: Install Ruby, run bundle install and cache the gems
|
13
|
+
uses: ruby/setup-ruby@v1
|
14
|
+
with:
|
15
|
+
ruby-version: 3.1.4
|
16
|
+
bundler-cache: true
|
19
17
|
|
20
18
|
- name: Rubocop
|
21
|
-
run: rubocop
|
19
|
+
run: bundle exec rubocop
|
data/.github/workflows/spec.yml
CHANGED
@@ -1,21 +1,19 @@
|
|
1
1
|
name: spec
|
2
|
-
|
3
2
|
on: push
|
4
3
|
|
5
4
|
jobs:
|
6
|
-
|
5
|
+
spec:
|
7
6
|
runs-on: ubuntu-latest
|
8
|
-
name: Run all
|
9
|
-
|
10
|
-
container:
|
11
|
-
image: ruby:2.7.6-bullseye
|
12
7
|
|
13
8
|
steps:
|
14
9
|
- name: Clone repository
|
15
|
-
uses: actions/checkout@
|
10
|
+
uses: actions/checkout@v4
|
16
11
|
|
17
|
-
- name: Install gems
|
18
|
-
|
12
|
+
- name: Install Ruby, run bundle install and cache the gems
|
13
|
+
uses: ruby/setup-ruby@v1
|
14
|
+
with:
|
15
|
+
ruby-version: 3.1.4
|
16
|
+
bundler-cache: true
|
19
17
|
|
20
18
|
- name: Run tests
|
21
|
-
run: rspec
|
19
|
+
run: bundle exec rspec
|
data/.rubocop.yml
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
AllCops:
|
2
2
|
Exclude:
|
3
3
|
- 'db/*schema.rb'
|
4
|
+
- 'vendor/bundle/**/*'
|
4
5
|
DisabledByDefault: true
|
5
6
|
StyleGuideBaseURL: https://shopify.github.io/ruby-style-guide/
|
6
7
|
|
@@ -18,19 +19,21 @@ Layout/LineLength:
|
|
18
19
|
Exclude:
|
19
20
|
- 'db/migrate*/**/*'
|
20
21
|
- 'spec/**/*'
|
22
|
+
- 'bridges/**/spec/**/*'
|
21
23
|
AllowHeredoc: true
|
22
24
|
AllowURI: true
|
23
25
|
URISchemes:
|
24
26
|
- http
|
25
27
|
- https
|
26
28
|
IgnoreCopDirectives: false
|
27
|
-
|
29
|
+
AllowedPatterns:
|
28
30
|
- '\A\s*(remote_)?test(_\w+)?\s.*(do|->)(\s|\Z)'
|
31
|
+
- '\A\s*#'
|
29
32
|
|
30
33
|
Style/MethodCallWithArgsParentheses:
|
31
34
|
Enabled: true
|
32
35
|
IgnoreMacros: true
|
33
|
-
|
36
|
+
AllowedMethods:
|
34
37
|
- require
|
35
38
|
- require_relative
|
36
39
|
- require_dependency
|
@@ -110,7 +113,7 @@ Style/BlockDelimiters:
|
|
110
113
|
- let!
|
111
114
|
- subject
|
112
115
|
- watch
|
113
|
-
|
116
|
+
AllowedMethods:
|
114
117
|
- lambda
|
115
118
|
- proc
|
116
119
|
- it
|
@@ -459,7 +462,7 @@ Layout/SpaceInsideStringInterpolation:
|
|
459
462
|
- no_space
|
460
463
|
|
461
464
|
Style/SymbolProc:
|
462
|
-
|
465
|
+
AllowedMethods:
|
463
466
|
- respond_to
|
464
467
|
- define_method
|
465
468
|
|
@@ -667,7 +670,7 @@ Style/LineEndConcatenation:
|
|
667
670
|
Style/MethodCallWithoutArgsParentheses:
|
668
671
|
Enabled: true
|
669
672
|
|
670
|
-
|
673
|
+
Lint/MissingSuper:
|
671
674
|
Enabled: true
|
672
675
|
|
673
676
|
Style/MissingRespondToMissing:
|
@@ -799,7 +802,7 @@ Layout/SpaceInsideRangeLiteral:
|
|
799
802
|
Style/SymbolLiteral:
|
800
803
|
Enabled: true
|
801
804
|
|
802
|
-
Layout/
|
805
|
+
Layout/IndentationStyle:
|
803
806
|
Enabled: true
|
804
807
|
|
805
808
|
Layout/TrailingWhitespace:
|
@@ -830,7 +833,7 @@ Style/ZeroLengthPredicate:
|
|
830
833
|
Enabled: true
|
831
834
|
|
832
835
|
Layout/HeredocIndentation:
|
833
|
-
|
836
|
+
Enabled: true
|
834
837
|
|
835
838
|
Lint/AmbiguousOperator:
|
836
839
|
Enabled: true
|
@@ -956,7 +959,7 @@ Lint/UselessAccessModifier:
|
|
956
959
|
Lint/UselessAssignment:
|
957
960
|
Enabled: true
|
958
961
|
|
959
|
-
Lint/
|
962
|
+
Lint/BinaryOperatorWithIdenticalOperands:
|
960
963
|
Enabled: true
|
961
964
|
|
962
965
|
Lint/UselessElseWithoutRescue:
|
data/Gemfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
source "https://rubygems.org"
|
3
3
|
|
4
|
-
gem "rails", "~>
|
4
|
+
gem "rails", "~> 7.0"
|
5
5
|
gem "rspec"
|
6
|
-
gem "rspec-rails", "~>
|
6
|
+
gem "rspec-rails", "~> 6.1"
|
7
7
|
gem "hubrise_initializer", path: "."
|
8
8
|
|
9
|
-
gem "rubocop", "
|
9
|
+
gem "rubocop", "1.62.1"
|
10
10
|
gem "webmock"
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
hubrise_initializer (1.0.
|
4
|
+
hubrise_initializer (1.0.8)
|
5
5
|
act-fluent-logger-rails (~> 0.6)
|
6
6
|
lograge (~> 0.11)
|
7
7
|
lograge-sql
|
@@ -14,206 +14,261 @@ GEM
|
|
14
14
|
activesupport (>= 4)
|
15
15
|
fluent-logger
|
16
16
|
railties (>= 4)
|
17
|
-
actioncable (
|
18
|
-
actionpack (=
|
19
|
-
activesupport (=
|
17
|
+
actioncable (7.1.3.2)
|
18
|
+
actionpack (= 7.1.3.2)
|
19
|
+
activesupport (= 7.1.3.2)
|
20
20
|
nio4r (~> 2.0)
|
21
21
|
websocket-driver (>= 0.6.1)
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
22
|
+
zeitwerk (~> 2.6)
|
23
|
+
actionmailbox (7.1.3.2)
|
24
|
+
actionpack (= 7.1.3.2)
|
25
|
+
activejob (= 7.1.3.2)
|
26
|
+
activerecord (= 7.1.3.2)
|
27
|
+
activestorage (= 7.1.3.2)
|
28
|
+
activesupport (= 7.1.3.2)
|
28
29
|
mail (>= 2.7.1)
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
30
|
+
net-imap
|
31
|
+
net-pop
|
32
|
+
net-smtp
|
33
|
+
actionmailer (7.1.3.2)
|
34
|
+
actionpack (= 7.1.3.2)
|
35
|
+
actionview (= 7.1.3.2)
|
36
|
+
activejob (= 7.1.3.2)
|
37
|
+
activesupport (= 7.1.3.2)
|
34
38
|
mail (~> 2.5, >= 2.5.4)
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
39
|
+
net-imap
|
40
|
+
net-pop
|
41
|
+
net-smtp
|
42
|
+
rails-dom-testing (~> 2.2)
|
43
|
+
actionpack (7.1.3.2)
|
44
|
+
actionview (= 7.1.3.2)
|
45
|
+
activesupport (= 7.1.3.2)
|
46
|
+
nokogiri (>= 1.8.5)
|
47
|
+
racc
|
48
|
+
rack (>= 2.2.4)
|
49
|
+
rack-session (>= 1.0.1)
|
40
50
|
rack-test (>= 0.6.3)
|
41
|
-
rails-dom-testing (~> 2.
|
42
|
-
rails-html-sanitizer (~> 1.
|
43
|
-
actiontext (
|
44
|
-
actionpack (=
|
45
|
-
activerecord (=
|
46
|
-
activestorage (=
|
47
|
-
activesupport (=
|
51
|
+
rails-dom-testing (~> 2.2)
|
52
|
+
rails-html-sanitizer (~> 1.6)
|
53
|
+
actiontext (7.1.3.2)
|
54
|
+
actionpack (= 7.1.3.2)
|
55
|
+
activerecord (= 7.1.3.2)
|
56
|
+
activestorage (= 7.1.3.2)
|
57
|
+
activesupport (= 7.1.3.2)
|
58
|
+
globalid (>= 0.6.0)
|
48
59
|
nokogiri (>= 1.8.5)
|
49
|
-
actionview (
|
50
|
-
activesupport (=
|
60
|
+
actionview (7.1.3.2)
|
61
|
+
activesupport (= 7.1.3.2)
|
51
62
|
builder (~> 3.1)
|
52
|
-
erubi (~> 1.
|
53
|
-
rails-dom-testing (~> 2.
|
54
|
-
rails-html-sanitizer (~> 1.
|
55
|
-
activejob (
|
56
|
-
activesupport (=
|
63
|
+
erubi (~> 1.11)
|
64
|
+
rails-dom-testing (~> 2.2)
|
65
|
+
rails-html-sanitizer (~> 1.6)
|
66
|
+
activejob (7.1.3.2)
|
67
|
+
activesupport (= 7.1.3.2)
|
57
68
|
globalid (>= 0.3.6)
|
58
|
-
activemodel (
|
59
|
-
activesupport (=
|
60
|
-
activerecord (
|
61
|
-
activemodel (=
|
62
|
-
activesupport (=
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
69
|
+
activemodel (7.1.3.2)
|
70
|
+
activesupport (= 7.1.3.2)
|
71
|
+
activerecord (7.1.3.2)
|
72
|
+
activemodel (= 7.1.3.2)
|
73
|
+
activesupport (= 7.1.3.2)
|
74
|
+
timeout (>= 0.4.0)
|
75
|
+
activestorage (7.1.3.2)
|
76
|
+
actionpack (= 7.1.3.2)
|
77
|
+
activejob (= 7.1.3.2)
|
78
|
+
activerecord (= 7.1.3.2)
|
79
|
+
activesupport (= 7.1.3.2)
|
68
80
|
marcel (~> 1.0)
|
69
|
-
|
70
|
-
|
81
|
+
activesupport (7.1.3.2)
|
82
|
+
base64
|
83
|
+
bigdecimal
|
71
84
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
85
|
+
connection_pool (>= 2.2.5)
|
86
|
+
drb
|
72
87
|
i18n (>= 1.6, < 2)
|
73
88
|
minitest (>= 5.1)
|
89
|
+
mutex_m
|
74
90
|
tzinfo (~> 2.0)
|
75
|
-
|
76
|
-
|
77
|
-
public_suffix (>= 2.0.2, < 5.0)
|
91
|
+
addressable (2.8.6)
|
92
|
+
public_suffix (>= 2.0.2, < 6.0)
|
78
93
|
ast (2.4.2)
|
94
|
+
base64 (0.2.0)
|
95
|
+
bigdecimal (3.1.7)
|
79
96
|
builder (3.2.4)
|
80
|
-
concurrent-ruby (1.
|
81
|
-
|
97
|
+
concurrent-ruby (1.2.3)
|
98
|
+
connection_pool (2.4.1)
|
99
|
+
crack (1.0.0)
|
100
|
+
bigdecimal
|
82
101
|
rexml
|
83
102
|
crass (1.0.6)
|
84
|
-
|
85
|
-
|
86
|
-
|
103
|
+
date (3.3.4)
|
104
|
+
diff-lcs (1.5.1)
|
105
|
+
drb (2.2.1)
|
106
|
+
erubi (1.12.0)
|
107
|
+
fluent-logger (0.9.1)
|
87
108
|
msgpack (>= 1.0.0, < 2)
|
88
|
-
globalid (1.
|
89
|
-
activesupport (>=
|
90
|
-
hashdiff (1.0
|
91
|
-
i18n (1.
|
109
|
+
globalid (1.2.1)
|
110
|
+
activesupport (>= 6.1)
|
111
|
+
hashdiff (1.1.0)
|
112
|
+
i18n (1.14.4)
|
92
113
|
concurrent-ruby (~> 1.0)
|
93
|
-
|
94
|
-
|
114
|
+
io-console (0.7.2)
|
115
|
+
irb (1.12.0)
|
116
|
+
rdoc
|
117
|
+
reline (>= 0.4.2)
|
118
|
+
json (2.7.1)
|
119
|
+
language_server-protocol (3.17.0.3)
|
120
|
+
lograge (0.14.0)
|
95
121
|
actionpack (>= 4)
|
96
122
|
activesupport (>= 4)
|
97
123
|
railties (>= 4)
|
98
124
|
request_store (~> 1.0)
|
99
|
-
lograge-sql (2.
|
100
|
-
activerecord (>= 5, < 7.
|
125
|
+
lograge-sql (2.3.2)
|
126
|
+
activerecord (>= 5, < 7.2)
|
101
127
|
lograge (~> 0.11)
|
102
128
|
logstash-event (1.2.02)
|
103
|
-
loofah (2.
|
129
|
+
loofah (2.22.0)
|
104
130
|
crass (~> 1.0.2)
|
105
|
-
nokogiri (>= 1.
|
106
|
-
mail (2.
|
131
|
+
nokogiri (>= 1.12.0)
|
132
|
+
mail (2.8.1)
|
107
133
|
mini_mime (>= 0.1.1)
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
134
|
+
net-imap
|
135
|
+
net-pop
|
136
|
+
net-smtp
|
137
|
+
marcel (1.0.4)
|
138
|
+
mini_mime (1.1.5)
|
139
|
+
mini_portile2 (2.8.5)
|
140
|
+
minitest (5.22.3)
|
141
|
+
msgpack (1.7.2)
|
142
|
+
mutex_m (0.2.0)
|
143
|
+
net-imap (0.4.10)
|
144
|
+
date
|
145
|
+
net-protocol
|
146
|
+
net-pop (0.1.2)
|
147
|
+
net-protocol
|
148
|
+
net-protocol (0.2.2)
|
149
|
+
timeout
|
150
|
+
net-smtp (0.5.0)
|
151
|
+
net-protocol
|
152
|
+
nio4r (2.7.1)
|
153
|
+
nokogiri (1.16.3)
|
154
|
+
mini_portile2 (~> 2.8.2)
|
117
155
|
racc (~> 1.4)
|
118
|
-
parallel (1.
|
119
|
-
parser (3.
|
156
|
+
parallel (1.24.0)
|
157
|
+
parser (3.3.0.5)
|
120
158
|
ast (~> 2.4.1)
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
159
|
+
racc
|
160
|
+
psych (5.1.2)
|
161
|
+
stringio
|
162
|
+
public_suffix (5.0.5)
|
163
|
+
racc (1.7.3)
|
164
|
+
rack (3.0.10)
|
165
|
+
rack-session (2.0.0)
|
166
|
+
rack (>= 3.0.0)
|
167
|
+
rack-test (2.1.0)
|
125
168
|
rack (>= 1.3)
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
169
|
+
rackup (2.1.0)
|
170
|
+
rack (>= 3)
|
171
|
+
webrick (~> 1.8)
|
172
|
+
rails (7.1.3.2)
|
173
|
+
actioncable (= 7.1.3.2)
|
174
|
+
actionmailbox (= 7.1.3.2)
|
175
|
+
actionmailer (= 7.1.3.2)
|
176
|
+
actionpack (= 7.1.3.2)
|
177
|
+
actiontext (= 7.1.3.2)
|
178
|
+
actionview (= 7.1.3.2)
|
179
|
+
activejob (= 7.1.3.2)
|
180
|
+
activemodel (= 7.1.3.2)
|
181
|
+
activerecord (= 7.1.3.2)
|
182
|
+
activestorage (= 7.1.3.2)
|
183
|
+
activesupport (= 7.1.3.2)
|
138
184
|
bundler (>= 1.15.0)
|
139
|
-
railties (=
|
140
|
-
|
141
|
-
|
142
|
-
|
185
|
+
railties (= 7.1.3.2)
|
186
|
+
rails-dom-testing (2.2.0)
|
187
|
+
activesupport (>= 5.0.0)
|
188
|
+
minitest
|
143
189
|
nokogiri (>= 1.6)
|
144
|
-
rails-html-sanitizer (1.
|
145
|
-
loofah (~> 2.
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
190
|
+
rails-html-sanitizer (1.6.0)
|
191
|
+
loofah (~> 2.21)
|
192
|
+
nokogiri (~> 1.14)
|
193
|
+
railties (7.1.3.2)
|
194
|
+
actionpack (= 7.1.3.2)
|
195
|
+
activesupport (= 7.1.3.2)
|
196
|
+
irb
|
197
|
+
rackup (>= 1.0.0)
|
150
198
|
rake (>= 12.2)
|
151
|
-
thor (~> 1.0)
|
199
|
+
thor (~> 1.0, >= 1.2.2)
|
200
|
+
zeitwerk (~> 2.6)
|
152
201
|
rainbow (3.1.1)
|
153
|
-
rake (13.0
|
154
|
-
|
202
|
+
rake (13.2.0)
|
203
|
+
rdoc (6.6.3.1)
|
204
|
+
psych (>= 4.0.0)
|
205
|
+
regexp_parser (2.9.0)
|
206
|
+
reline (0.5.0)
|
207
|
+
io-console (~> 0.5)
|
208
|
+
request_store (1.6.0)
|
155
209
|
rack (>= 1.4)
|
156
|
-
rexml (3.2.
|
157
|
-
rspec (3.
|
158
|
-
rspec-core (~> 3.
|
159
|
-
rspec-expectations (~> 3.
|
160
|
-
rspec-mocks (~> 3.
|
161
|
-
rspec-core (3.
|
162
|
-
rspec-support (~> 3.
|
163
|
-
rspec-expectations (3.
|
210
|
+
rexml (3.2.6)
|
211
|
+
rspec (3.13.0)
|
212
|
+
rspec-core (~> 3.13.0)
|
213
|
+
rspec-expectations (~> 3.13.0)
|
214
|
+
rspec-mocks (~> 3.13.0)
|
215
|
+
rspec-core (3.13.0)
|
216
|
+
rspec-support (~> 3.13.0)
|
217
|
+
rspec-expectations (3.13.0)
|
164
218
|
diff-lcs (>= 1.2.0, < 2.0)
|
165
|
-
rspec-support (~> 3.
|
166
|
-
rspec-mocks (3.
|
219
|
+
rspec-support (~> 3.13.0)
|
220
|
+
rspec-mocks (3.13.0)
|
167
221
|
diff-lcs (>= 1.2.0, < 2.0)
|
168
|
-
rspec-support (~> 3.
|
169
|
-
rspec-rails (
|
170
|
-
actionpack (>=
|
171
|
-
activesupport (>=
|
172
|
-
railties (>=
|
173
|
-
rspec-core (~> 3.
|
174
|
-
rspec-expectations (~> 3.
|
175
|
-
rspec-mocks (~> 3.
|
176
|
-
rspec-support (~> 3.
|
177
|
-
rspec-support (3.
|
178
|
-
rubocop (
|
179
|
-
|
222
|
+
rspec-support (~> 3.13.0)
|
223
|
+
rspec-rails (6.1.2)
|
224
|
+
actionpack (>= 6.1)
|
225
|
+
activesupport (>= 6.1)
|
226
|
+
railties (>= 6.1)
|
227
|
+
rspec-core (~> 3.13)
|
228
|
+
rspec-expectations (~> 3.13)
|
229
|
+
rspec-mocks (~> 3.13)
|
230
|
+
rspec-support (~> 3.13)
|
231
|
+
rspec-support (3.13.1)
|
232
|
+
rubocop (1.62.1)
|
233
|
+
json (~> 2.3)
|
234
|
+
language_server-protocol (>= 3.17.0)
|
180
235
|
parallel (~> 1.10)
|
181
|
-
parser (>=
|
236
|
+
parser (>= 3.3.0.2)
|
182
237
|
rainbow (>= 2.2.2, < 4.0)
|
183
|
-
|
238
|
+
regexp_parser (>= 1.8, < 3.0)
|
239
|
+
rexml (>= 3.2.5, < 4.0)
|
240
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
184
241
|
ruby-progressbar (~> 1.7)
|
185
|
-
unicode-display_width (>=
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
sprockets (>= 3.0.0)
|
194
|
-
thor (1.2.1)
|
195
|
-
tzinfo (2.0.4)
|
242
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
243
|
+
rubocop-ast (1.31.2)
|
244
|
+
parser (>= 3.3.0.4)
|
245
|
+
ruby-progressbar (1.13.0)
|
246
|
+
stringio (3.1.0)
|
247
|
+
thor (1.3.1)
|
248
|
+
timeout (0.4.1)
|
249
|
+
tzinfo (2.0.6)
|
196
250
|
concurrent-ruby (~> 1.0)
|
197
|
-
unicode-display_width (
|
198
|
-
webmock (3.
|
251
|
+
unicode-display_width (2.5.0)
|
252
|
+
webmock (3.23.0)
|
199
253
|
addressable (>= 2.8.0)
|
200
254
|
crack (>= 0.3.2)
|
201
255
|
hashdiff (>= 0.4.0, < 2.0.0)
|
202
|
-
|
256
|
+
webrick (1.8.1)
|
257
|
+
websocket-driver (0.7.6)
|
203
258
|
websocket-extensions (>= 0.1.0)
|
204
259
|
websocket-extensions (0.1.5)
|
205
|
-
zeitwerk (2.6.
|
260
|
+
zeitwerk (2.6.13)
|
206
261
|
|
207
262
|
PLATFORMS
|
208
263
|
ruby
|
209
264
|
|
210
265
|
DEPENDENCIES
|
211
266
|
hubrise_initializer!
|
212
|
-
rails (~>
|
267
|
+
rails (~> 7.0)
|
213
268
|
rspec
|
214
|
-
rspec-rails (~>
|
215
|
-
rubocop (=
|
269
|
+
rspec-rails (~> 6.1)
|
270
|
+
rubocop (= 1.62.1)
|
216
271
|
webmock
|
217
272
|
|
218
273
|
BUNDLED WITH
|
219
|
-
2.
|
274
|
+
2.5.7
|
data/README.md
CHANGED
data/lib/hubrise_initializer.rb
CHANGED
@@ -86,7 +86,7 @@ class HubriseInitializer
|
|
86
86
|
# - 172.0.0.0/8: host in docker-compose
|
87
87
|
# - 192.168.0.0/16: inter containers network in docker-compose
|
88
88
|
# - 10.244.0.0/16: pod networks in Kubernetes
|
89
|
-
config.web_console.
|
89
|
+
config.web_console.allowed_ips = ["172.0.0.0/8", "192.168.0.0/16", "10.0.0.0/8"]
|
90
90
|
end
|
91
91
|
end
|
92
92
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hubrise_initializer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Antoine Monnier
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lograge
|