Skip to content

Commit a91a805

Browse files
committed
➕ Determine dependencies
1 parent 308a79e commit a91a805

File tree

19 files changed

+333
-277
lines changed

19 files changed

+333
-277
lines changed

.rubocop_gradual.lock

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"README.md:3434634895": [
3+
[68, 14, 2, "Lint/Syntax: unexpected token tASSOC\n(Using Ruby 2.0 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)", 5859494],
4+
[69, 15, 2, "Lint/Syntax: unexpected token tASSOC\n(Using Ruby 2.0 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)", 5859494]
5+
],
6+
"lib/omniauth-ldap/adaptor.rb:1489268298": [
7+
[29, 7, 413, "Style/ClassMethodsDefinitions: Use `class << self` to define a class method.", 105664470],
8+
[79, 17, 3, "Style/AndOr: Use `&&` instead of `and`.", 193409806],
9+
[79, 30, 3, "Style/AndOr: Use `&&` instead of `and`.", 193409806],
10+
[79, 37, 1, "Lint/AssignmentInCondition: Wrap assignment in parentheses if intentional", 177560]
11+
],
12+
"lib/omniauth/strategies/ldap.rb:356253354": [
13+
[48, 9, 53, "Lint/RescueException: Avoid rescuing the `Exception` class. Perhaps you meant to rescue `StandardError`?", 4018396070],
14+
[54, 27, 3, "Style/AndOr: Use `&&` instead of `and`.", 193409806],
15+
[71, 7, 970, "Style/ClassMethodsDefinitions: Use `class << self` to define a class method.", 3995669691]
16+
],
17+
"spec/omniauth-ldap/adaptor_spec.rb:3932937965": [
18+
[71, 7, 26, "RSpec/StubbedMock: Prefer `allow` over `expect` when configuring a response.", 1924417310],
19+
[72, 7, 26, "RSpec/StubbedMock: Prefer `allow` over `expect` when configuring a response.", 1924417310],
20+
[73, 7, 26, "RSpec/StubbedMock: Prefer `allow` over `expect` when configuring a response.", 1924417310],
21+
[79, 7, 26, "RSpec/StubbedMock: Prefer `allow` over `expect` when configuring a response.", 1924417310],
22+
[80, 7, 26, "RSpec/StubbedMock: Prefer `allow` over `expect` when configuring a response.", 1924417310],
23+
[81, 7, 26, "RSpec/StubbedMock: Prefer `allow` over `expect` when configuring a response.", 1924417310]
24+
],
25+
"spec/omniauth/strategies/ldap_spec.rb:438668078": [
26+
[12, 3, 54, "RSpec/LeakyConstantDeclaration: Stub class constant instead of declaring explicitly.", 2419068710],
27+
[68, 13, 9, "RSpec/ContextWording: Context description should match /^when\\b/, /^with\\b/, or /^without\\b/.", 1130140517],
28+
[93, 17, 28, "RSpec/ContextWording: Context description should match /^when\\b/, /^with\\b/, or /^without\\b/.", 3444838747],
29+
[102, 17, 23, "RSpec/ContextWording: Context description should match /^when\\b/, /^with\\b/, or /^without\\b/.", 1584148894],
30+
[113, 17, 32, "RSpec/ContextWording: Context description should match /^when\\b/, /^with\\b/, or /^without\\b/.", 1515076977],
31+
[121, 19, 19, "RSpec/ContextWording: Context description should match /^when\\b/, /^with\\b/, or /^without\\b/.", 2526348694],
32+
[133, 17, 56, "RSpec/ContextWording: Context description should match /^when\\b/, /^with\\b/, or /^without\\b/.", 2413495789],
33+
[148, 13, 9, "RSpec/ContextWording: Context description should match /^when\\b/, /^with\\b/, or /^without\\b/.", 3182939526],
34+
[181, 15, 19, "RSpec/ContextWording: Context description should match /^when\\b/, /^with\\b/, or /^without\\b/.", 2526348694]
35+
]
36+
}

.yard_gfm_support.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ def initialize(source, options = {})
1818
# - https://github.com/lsegal/yard/blob/main/lib/yard/templates/helpers/markup_helper.rb
1919
YARD::Templates::Helpers::MarkupHelper::MARKUP_PROVIDERS[:markdown].insert(
2020
0,
21-
{const: "KramdownGfmDocument"},
21+
{:const => "KramdownGfmDocument"},
2222
)

Gemfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ git_source(:gitlab) { |repo_name| "https://gitlab.com/#{repo_name}" }
1313
gemspec
1414

1515
group :development, :test do
16-
gem 'guard'
17-
gem 'guard-rspec'
18-
gem 'guard-bundler'
19-
gem 'growl'
20-
gem 'rb-fsevent'
16+
gem "guard"
17+
gem "guard-rspec"
18+
gem "guard-bundler"
19+
gem "growl"
20+
gem "rb-fsevent"
2121
end
2222

2323
# Debugging

Gemfile.lock

Lines changed: 28 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ PATH
1414
remote: .
1515
specs:
1616
omniauth-ldap (2.0.0)
17+
net-ldap
18+
nkf
19+
omniauth
20+
rack
21+
ruby-sasl
22+
rubyntlm
1723
version_gem (~> 1.1, >= 1.1.9)
1824

1925
GEM
@@ -28,6 +34,7 @@ GEM
2834
thor (>= 0.14)
2935
ast (2.4.3)
3036
backports (3.25.2)
37+
base64 (0.3.0)
3138
benchmark (0.5.0)
3239
bigdecimal (3.3.1)
3340
bundler-audit (0.9.2)
@@ -73,17 +80,7 @@ GEM
7380
dry-logic (~> 1.4)
7481
zeitwerk (~> 2.6)
7582
erb (5.1.3)
76-
ffi (1.17.2)
77-
ffi (1.17.2-aarch64-linux-gnu)
78-
ffi (1.17.2-aarch64-linux-musl)
79-
ffi (1.17.2-arm-linux-gnu)
80-
ffi (1.17.2-arm-linux-musl)
81-
ffi (1.17.2-arm64-darwin)
82-
ffi (1.17.2-x86-linux-gnu)
83-
ffi (1.17.2-x86-linux-musl)
84-
ffi (1.17.2-x86_64-darwin)
8583
ffi (1.17.2-x86_64-linux-gnu)
86-
ffi (1.17.2-x86_64-linux-musl)
8784
formatador (1.2.2)
8885
reline
8986
gem_bench (2.0.5)
@@ -112,6 +109,7 @@ GEM
112109
guard (~> 2.1)
113110
guard-compat (~> 1.1)
114111
rspec (>= 2.99.0, < 4.0)
112+
hashie (5.0.0)
115113
io-console (0.8.1)
116114
irb (1.15.2)
117115
pp (>= 0.6.0)
@@ -151,31 +149,22 @@ GEM
151149
logger (1.7.0)
152150
lumberjack (1.4.2)
153151
method_source (1.1.0)
154-
mini_portile2 (2.8.9)
155152
mutex_m (0.3.0)
156153
nenv (0.3.0)
157-
nokogiri (1.18.10)
158-
mini_portile2 (~> 2.8.2)
159-
racc (~> 1.4)
160-
nokogiri (1.18.10-aarch64-linux-gnu)
161-
racc (~> 1.4)
162-
nokogiri (1.18.10-aarch64-linux-musl)
163-
racc (~> 1.4)
164-
nokogiri (1.18.10-arm-linux-gnu)
165-
racc (~> 1.4)
166-
nokogiri (1.18.10-arm-linux-musl)
167-
racc (~> 1.4)
168-
nokogiri (1.18.10-arm64-darwin)
169-
racc (~> 1.4)
170-
nokogiri (1.18.10-x86_64-darwin)
171-
racc (~> 1.4)
154+
net-ldap (0.20.0)
155+
base64
156+
ostruct
157+
nkf (0.2.0)
172158
nokogiri (1.18.10-x86_64-linux-gnu)
173159
racc (~> 1.4)
174-
nokogiri (1.18.10-x86_64-linux-musl)
175-
racc (~> 1.4)
176160
notiffany (0.1.3)
177161
nenv (~> 0.1)
178162
shellany (~> 0.0)
163+
omniauth (2.1.4)
164+
hashie (>= 3.4.6)
165+
logger
166+
rack (>= 2.2.3)
167+
rack-protection
179168
ostruct (0.6.3)
180169
parallel (1.27.0)
181170
parser (3.3.10.0)
@@ -193,6 +182,13 @@ GEM
193182
stringio
194183
public_suffix (6.0.2)
195184
racc (1.8.1)
185+
rack (3.2.3)
186+
rack-protection (4.2.1)
187+
base64 (>= 0.1.0)
188+
logger (>= 1.6.0)
189+
rack (>= 3.0.0, < 4)
190+
rack-test (2.2.0)
191+
rack (>= 1.3)
196192
rainbow (3.1.1)
197193
rake (13.3.1)
198194
rb-fsevent (0.11.2)
@@ -297,8 +293,11 @@ GEM
297293
rubocop (~> 1.72, >= 1.72.1)
298294
rubocop-ast (>= 1.44.0, < 2.0)
299295
ruby-progressbar (1.13.0)
296+
ruby-sasl (0.0.3)
300297
ruby_engine (2.0.3)
301298
ruby_version (1.0.3)
299+
rubyntlm (0.6.5)
300+
base64
302301
shellany (0.0.1)
303302
silent_stream (1.0.12)
304303
logger (~> 1.2)
@@ -360,17 +359,7 @@ GEM
360359
zlib (3.2.2)
361360

362361
PLATFORMS
363-
aarch64-linux-gnu
364-
aarch64-linux-musl
365-
arm-linux-gnu
366-
arm-linux-musl
367-
arm64-darwin
368-
ruby
369-
x86-linux-gnu
370-
x86-linux-musl
371-
x86_64-darwin
372362
x86_64-linux-gnu
373-
x86_64-linux-musl
374363

375364
DEPENDENCIES
376365
addressable (>= 2.8, < 3)
@@ -393,6 +382,7 @@ DEPENDENCIES
393382
kramdown-parser-gfm (~> 1.1)
394383
mutex_m (~> 0.2)
395384
omniauth-ldap!
385+
rack-test (~> 2.2)
396386
rake (~> 13.0)
397387
rb-fsevent
398388
rdoc (~> 6.11)

Guardfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
guard 'rspec', :version => 2 do
1+
guard "rspec", :version => 2 do
22
watch(%r{^spec/.+_spec\.rb$})
3-
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
4-
watch('spec/spec_helper.rb') { "spec" }
3+
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
4+
watch("spec/spec_helper.rb") { "spec" }
55
end
66

7-
8-
guard 'bundler' do
9-
watch('Gemfile')
7+
guard "bundler" do
8+
watch("Gemfile")
109
watch(/^.+\.gemspec/)
1110
end

gemfiles/modular/coverage.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# We run code coverage on the latest version of Ruby only.
44

55
# Coverage
6-
gem "kettle-soup-cover", "~> 1.0", ">= 1.0.10", require: false
6+
gem "kettle-soup-cover", "~> 1.0", ">= 1.0.10", :require => false

gemfiles/modular/documentation.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# Documentation
44
gem "kramdown", "~> 2.5", ">= 2.5.1" # Ruby >= 2.5
55
gem "kramdown-parser-gfm", "~> 1.1" # Ruby >= 2.3
6-
gem "yard", "~> 0.9", ">= 0.9.37", require: false
7-
gem "yard-junk", "~> 0.0", ">= 0.0.10", github: "pboling/yard-junk", branch: "next", require: false
6+
gem "yard", "~> 0.9", ">= 0.9.37", :require => false
7+
gem "yard-junk", "~> 0.0", ">= 0.0.10", :github => "pboling/yard-junk", :branch => "next", :require => false
88
gem "yard-relative_markdown_links", "~> 0.5.0"
99

1010
# Std Lib extractions

gemfiles/modular/erb/vHEAD.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Ruby >= 3.2 (dependency of kettle-dev)
2-
gem "erb", github: "ruby/erb", branch: "master"
2+
gem "erb", :github => "ruby/erb", :branch => "master"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Ruby >= 2.5 (dependency of omniauth)
2-
gem "mutex_m", github: "ruby/mutex_m", branch: "master"
2+
gem "mutex_m", :github => "ruby/mutex_m", :branch => "master"

gemfiles/modular/runtime_heads.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# Test against HEAD of runtime dependencies so we can proactively file bugs
44

55
# Ruby >= 2.2
6-
gem "version_gem", github: "ruby-oauth/version_gem", branch: "main"
6+
gem "version_gem", :github => "ruby-oauth/version_gem", :branch => "main"
77

88
eval_gemfile("x_std_libs/vHEAD.gemfile")

0 commit comments

Comments
 (0)