Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
cb36156e
Commit
cb36156e
authored
Apr 20, 2021
by
Shubham Kumar
Committed by
Kerri Miller
Apr 20, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolves rubocop offense Style/RedundantFileExtensionInRequire
parent
31f45d7b
Changes
23
Show whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
30 additions
and
30 deletions
+30
-30
.rubocop_todo.yml
.rubocop_todo.yml
+0
-5
changelogs/unreleased/pl-rubocop-todo-redundant-file-extension-in-require.yml
...d/pl-rubocop-todo-redundant-file-extension-in-require.yml
+5
-0
ee/app/controllers/groups/saml_providers_controller.rb
ee/app/controllers/groups/saml_providers_controller.rb
+1
-1
lib/tasks/tokens.rake
lib/tasks/tokens.rake
+4
-4
qa/qa/specs/features/browser_ui/8_monitor/all_monitor_core_features_spec.rb
...es/browser_ui/8_monitor/all_monitor_core_features_spec.rb
+1
-1
qa/qa/specs/features/ee/browser_ui/8_monitor/all_monitor_features_spec.rb
...ures/ee/browser_ui/8_monitor/all_monitor_features_spec.rb
+1
-1
qa/qa/tools/revoke_all_personal_access_tokens.rb
qa/qa/tools/revoke_all_personal_access_tokens.rb
+1
-1
rubocop/cop/code_reuse/presenter.rb
rubocop/cop/code_reuse/presenter.rb
+1
-1
rubocop/cop/code_reuse/serializer.rb
rubocop/cop/code_reuse/serializer.rb
+1
-1
rubocop/cop/code_reuse/service_class.rb
rubocop/cop/code_reuse/service_class.rb
+1
-1
rubocop/cop/code_reuse/worker.rb
rubocop/cop/code_reuse/worker.rb
+1
-1
rubocop/cop/scalability/idempotent_worker.rb
rubocop/cop/scalability/idempotent_worker.rb
+1
-1
scripts/docs_screenshots.rb
scripts/docs_screenshots.rb
+1
-1
spec/initializers/6_validations_spec.rb
spec/initializers/6_validations_spec.rb
+1
-1
spec/initializers/mail_encoding_patch_spec.rb
spec/initializers/mail_encoding_patch_spec.rb
+1
-1
spec/lib/gitlab/import_export/json/legacy_reader/file_spec.rb
.../lib/gitlab/import_export/json/legacy_reader/file_spec.rb
+1
-1
spec/lib/gitlab/import_export/json/legacy_reader/hash_spec.rb
.../lib/gitlab/import_export/json/legacy_reader/hash_spec.rb
+1
-1
spec/rubocop/cop/performance/ar_count_each_spec.rb
spec/rubocop/cop/performance/ar_count_each_spec.rb
+1
-1
spec/rubocop/cop/performance/ar_exists_and_present_blank_spec.rb
...bocop/cop/performance/ar_exists_and_present_blank_spec.rb
+1
-1
spec/services/ci/pipeline_processing/atomic_processing_service_spec.rb
.../ci/pipeline_processing/atomic_processing_service_spec.rb
+2
-2
spec/services/issues/build_service_spec.rb
spec/services/issues/build_service_spec.rb
+1
-1
spec/services/issues/referenced_merge_requests_service_spec.rb
...services/issues/referenced_merge_requests_service_spec.rb
+1
-1
spec/services/issues/resolve_discussions_spec.rb
spec/services/issues/resolve_discussions_spec.rb
+1
-1
No files found.
.rubocop_todo.yml
View file @
cb36156e
...
@@ -876,11 +876,6 @@ Style/RedundantFetchBlock:
...
@@ -876,11 +876,6 @@ Style/RedundantFetchBlock:
-
'
spec/lib/gitlab/null_request_store_spec.rb'
-
'
spec/lib/gitlab/null_request_store_spec.rb'
-
'
spec/lib/gitlab/safe_request_store_spec.rb'
-
'
spec/lib/gitlab/safe_request_store_spec.rb'
# Offense count: 26
# Cop supports --auto-correct.
Style/RedundantFileExtensionInRequire
:
Enabled
:
false
# Offense count: 206
# Offense count: 206
# Cop supports --auto-correct.
# Cop supports --auto-correct.
Style/RedundantInterpolation
:
Style/RedundantInterpolation
:
...
...
changelogs/unreleased/pl-rubocop-todo-redundant-file-extension-in-require.yml
0 → 100644
View file @
cb36156e
---
title
:
Resolves rubocop offense Style/RedundantFileExtensionInRequire
merge_request
:
57963
author
:
Shubham Kumar (@imskr)
type
:
fixed
ee/app/controllers/groups/saml_providers_controller.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require_relative
'../concerns/saml_authorization
.rb
'
require_relative
'../concerns/saml_authorization'
class
Groups::SamlProvidersController
<
Groups
::
ApplicationController
class
Groups::SamlProvidersController
<
Groups
::
ApplicationController
include
SamlAuthorization
include
SamlAuthorization
...
...
lib/tasks/tokens.rake
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require_relative
'../../app/models/concerns/token_authenticatable
.rb
'
require_relative
'../../app/models/concerns/token_authenticatable'
require_relative
'../../app/models/concerns/token_authenticatable_strategies/base
.rb
'
require_relative
'../../app/models/concerns/token_authenticatable_strategies/base'
require_relative
'../../app/models/concerns/token_authenticatable_strategies/insecure
.rb
'
require_relative
'../../app/models/concerns/token_authenticatable_strategies/insecure'
require_relative
'../../app/models/concerns/token_authenticatable_strategies/digest
.rb
'
require_relative
'../../app/models/concerns/token_authenticatable_strategies/digest'
namespace
:tokens
do
namespace
:tokens
do
desc
"Reset all GitLab incoming email tokens"
desc
"Reset all GitLab incoming email tokens"
...
...
qa/qa/specs/features/browser_ui/8_monitor/all_monitor_core_features_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require_relative
'cluster_with_prometheus
.rb
'
require_relative
'cluster_with_prometheus'
module
QA
module
QA
RSpec
.
describe
'Monitor'
,
:orchestrated
,
:kubernetes
,
:requires_admin
,
quarantine:
{
issue:
'https://gitlab.com/gitlab-org/gitlab/-/issues/241448'
,
type: :investigating
}
do
RSpec
.
describe
'Monitor'
,
:orchestrated
,
:kubernetes
,
:requires_admin
,
quarantine:
{
issue:
'https://gitlab.com/gitlab-org/gitlab/-/issues/241448'
,
type: :investigating
}
do
...
...
qa/qa/specs/features/ee/browser_ui/8_monitor/all_monitor_features_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require
'pathname'
require
'pathname'
require_relative
'../../../browser_ui/8_monitor/cluster_with_prometheus
.rb
'
require_relative
'../../../browser_ui/8_monitor/cluster_with_prometheus'
module
QA
module
QA
RSpec
.
describe
'Monitor'
,
:orchestrated
,
:kubernetes
,
:requires_admin
,
quarantine:
{
issue:
'https://gitlab.com/gitlab-org/gitlab/-/issues/241448'
,
type: :investigating
}
do
RSpec
.
describe
'Monitor'
,
:orchestrated
,
:kubernetes
,
:requires_admin
,
quarantine:
{
issue:
'https://gitlab.com/gitlab-org/gitlab/-/issues/241448'
,
type: :investigating
}
do
...
...
qa/qa/tools/revoke_all_personal_access_tokens.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require_relative
'../../qa'
require_relative
'../../qa'
require
'net/protocol
.rb
'
require
'net/protocol'
# This script revokes all personal access tokens with the name of 'api-test-token' on the host specified by GITLAB_ADDRESS
# This script revokes all personal access tokens with the name of 'api-test-token' on the host specified by GITLAB_ADDRESS
# Required environment variables: GITLAB_USERNAME, GITLAB_PASSWORD and GITLAB_ADDRESS
# Required environment variables: GITLAB_USERNAME, GITLAB_PASSWORD and GITLAB_ADDRESS
# Run `rake revoke_personal_access_tokens`
# Run `rake revoke_personal_access_tokens`
...
...
rubocop/cop/code_reuse/presenter.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require_relative
'../../code_reuse_helpers
.rb
'
require_relative
'../../code_reuse_helpers'
module
RuboCop
module
RuboCop
module
Cop
module
Cop
...
...
rubocop/cop/code_reuse/serializer.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require_relative
'../../code_reuse_helpers
.rb
'
require_relative
'../../code_reuse_helpers'
module
RuboCop
module
RuboCop
module
Cop
module
Cop
...
...
rubocop/cop/code_reuse/service_class.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require_relative
'../../code_reuse_helpers
.rb
'
require_relative
'../../code_reuse_helpers'
module
RuboCop
module
RuboCop
module
Cop
module
Cop
...
...
rubocop/cop/code_reuse/worker.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require_relative
'../../code_reuse_helpers
.rb
'
require_relative
'../../code_reuse_helpers'
module
RuboCop
module
RuboCop
module
Cop
module
Cop
...
...
rubocop/cop/scalability/idempotent_worker.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require_relative
'../../code_reuse_helpers
.rb
'
require_relative
'../../code_reuse_helpers'
module
RuboCop
module
RuboCop
module
Cop
module
Cop
...
...
scripts/docs_screenshots.rb
View file @
cb36156e
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
require
'png_quantizator'
require
'png_quantizator'
require
'open3'
require
'open3'
require
'parallel'
require
'parallel'
require_relative
'../tooling/lib/tooling/images
.rb
'
require_relative
'../tooling/lib/tooling/images'
generator
=
ARGV
[
0
]
generator
=
ARGV
[
0
]
milestone
=
ARGV
[
1
]
milestone
=
ARGV
[
1
]
...
...
spec/initializers/6_validations_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require
'spec_helper'
require
'spec_helper'
require_relative
'../../config/initializers/6_validations
.rb
'
require_relative
'../../config/initializers/6_validations'
RSpec
.
describe
'6_validations'
do
RSpec
.
describe
'6_validations'
do
describe
'validate_storages_config'
do
describe
'validate_storages_config'
do
...
...
spec/initializers/mail_encoding_patch_spec.rb
View file @
cb36156e
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
require
'fast_spec_helper'
require
'fast_spec_helper'
require
'mail'
require
'mail'
require_relative
'../../config/initializers/mail_encoding_patch
.rb
'
require_relative
'../../config/initializers/mail_encoding_patch'
RSpec
.
describe
'Mail quoted-printable transfer encoding patch and Unicode characters'
do
RSpec
.
describe
'Mail quoted-printable transfer encoding patch and Unicode characters'
do
shared_examples
'email encoding'
do
|
email
|
shared_examples
'email encoding'
do
|
email
|
...
...
spec/lib/gitlab/import_export/json/legacy_reader/file_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require
'spec_helper'
require
'spec_helper'
require_relative
'shared_example
.rb
'
require_relative
'shared_example'
RSpec
.
describe
Gitlab
::
ImportExport
::
JSON
::
LegacyReader
::
File
do
RSpec
.
describe
Gitlab
::
ImportExport
::
JSON
::
LegacyReader
::
File
do
it_behaves_like
'import/export json legacy reader'
do
it_behaves_like
'import/export json legacy reader'
do
...
...
spec/lib/gitlab/import_export/json/legacy_reader/hash_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require
'spec_helper'
require
'spec_helper'
require_relative
'shared_example
.rb
'
require_relative
'shared_example'
RSpec
.
describe
Gitlab
::
ImportExport
::
JSON
::
LegacyReader
::
Hash
do
RSpec
.
describe
Gitlab
::
ImportExport
::
JSON
::
LegacyReader
::
Hash
do
it_behaves_like
'import/export json legacy reader'
do
it_behaves_like
'import/export json legacy reader'
do
...
...
spec/rubocop/cop/performance/ar_count_each_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require
'fast_spec_helper'
require
'fast_spec_helper'
require_relative
'../../../../rubocop/cop/performance/ar_count_each
.rb
'
require_relative
'../../../../rubocop/cop/performance/ar_count_each'
RSpec
.
describe
RuboCop
::
Cop
::
Performance
::
ARCountEach
do
RSpec
.
describe
RuboCop
::
Cop
::
Performance
::
ARCountEach
do
subject
(
:cop
)
{
described_class
.
new
}
subject
(
:cop
)
{
described_class
.
new
}
...
...
spec/rubocop/cop/performance/ar_exists_and_present_blank_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require
'fast_spec_helper'
require
'fast_spec_helper'
require_relative
'../../../../rubocop/cop/performance/ar_exists_and_present_blank
.rb
'
require_relative
'../../../../rubocop/cop/performance/ar_exists_and_present_blank'
RSpec
.
describe
RuboCop
::
Cop
::
Performance
::
ARExistsAndPresentBlank
do
RSpec
.
describe
RuboCop
::
Cop
::
Performance
::
ARExistsAndPresentBlank
do
subject
(
:cop
)
{
described_class
.
new
}
subject
(
:cop
)
{
described_class
.
new
}
...
...
spec/services/ci/pipeline_processing/atomic_processing_service_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require
'spec_helper'
require
'spec_helper'
require_relative
'shared_processing_service
.rb
'
require_relative
'shared_processing_service'
require_relative
'shared_processing_service_tests_with_yaml
.rb
'
require_relative
'shared_processing_service_tests_with_yaml'
RSpec
.
describe
Ci
::
PipelineProcessing
::
AtomicProcessingService
do
RSpec
.
describe
Ci
::
PipelineProcessing
::
AtomicProcessingService
do
it_behaves_like
'Pipeline Processing Service'
it_behaves_like
'Pipeline Processing Service'
...
...
spec/services/issues/build_service_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require
'spec_helper
.rb
'
require
'spec_helper'
RSpec
.
describe
Issues
::
BuildService
do
RSpec
.
describe
Issues
::
BuildService
do
let_it_be
(
:project
)
{
create
(
:project
,
:repository
)
}
let_it_be
(
:project
)
{
create
(
:project
,
:repository
)
}
...
...
spec/services/issues/referenced_merge_requests_service_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require
'spec_helper
.rb
'
require
'spec_helper'
RSpec
.
describe
Issues
::
ReferencedMergeRequestsService
do
RSpec
.
describe
Issues
::
ReferencedMergeRequestsService
do
def
create_referencing_mr
(
attributes
=
{})
def
create_referencing_mr
(
attributes
=
{})
...
...
spec/services/issues/resolve_discussions_spec.rb
View file @
cb36156e
# frozen_string_literal: true
# frozen_string_literal: true
require
'spec_helper
.rb
'
require
'spec_helper'
RSpec
.
describe
Issues
::
ResolveDiscussions
do
RSpec
.
describe
Issues
::
ResolveDiscussions
do
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:project
)
{
create
(
:project
,
:repository
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment