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
ebfa44ad
Commit
ebfa44ad
authored
Feb 11, 2021
by
Markus Koller
Committed by
Mike Kozono
Feb 11, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Style/FrozenStringLiteralComment violations in qa
Auto-corrected with Rubocop
parent
112638e6
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
14 additions
and
8 deletions
+14
-8
.rubocop_manual_todo.yml
.rubocop_manual_todo.yml
+0
-8
qa/Gemfile
qa/Gemfile
+2
-0
qa/Rakefile
qa/Rakefile
+2
-0
qa/bin/qa
qa/bin/qa
+1
-0
qa/bin/rubymine
qa/bin/rubymine
+1
-0
qa/qa/fixtures/auto_devops_rack/Gemfile
qa/qa/fixtures/auto_devops_rack/Gemfile
+2
-0
qa/qa/fixtures/auto_devops_rack/Rakefile
qa/qa/fixtures/auto_devops_rack/Rakefile
+2
-0
qa/qa/fixtures/auto_devops_rack/config.ru
qa/qa/fixtures/auto_devops_rack/config.ru
+2
-0
qa/qa/page/page_concern.rb
qa/qa/page/page_concern.rb
+2
-0
No files found.
.rubocop_manual_todo.yml
View file @
ebfa44ad
...
...
@@ -2497,14 +2497,6 @@ Style/FrozenStringLiteralComment:
-
'
bin/secpick'
-
'
danger/changes_size/Dangerfile'
-
'
danger/metadata/Dangerfile'
-
'
qa/Gemfile'
-
'
qa/Rakefile'
-
'
qa/bin/qa'
-
'
qa/bin/rubymine'
-
'
qa/qa/fixtures/auto_devops_rack/Gemfile'
-
'
qa/qa/fixtures/auto_devops_rack/Rakefile'
-
'
qa/qa/fixtures/auto_devops_rack/config.ru'
-
'
qa/qa/page/page_concern.rb'
-
'
scripts/flaky_examples/detect-new-flaky-examples'
-
'
scripts/flaky_examples/prune-old-flaky-examples'
-
'
scripts/gather-test-memory-data'
...
...
qa/Gemfile
View file @
ebfa44ad
# frozen_string_literal: true
source
'https://rubygems.org'
gem
'gitlab-qa'
...
...
qa/Rakefile
View file @
ebfa44ad
# frozen_string_literal: true
require_relative
'qa/tools/revoke_all_personal_access_tokens'
require_relative
'qa/tools/delete_subgroups'
require_relative
'qa/tools/generate_perf_testdata'
...
...
qa/bin/qa
View file @
ebfa44ad
#!/usr/bin/env ruby
# frozen_string_literal: true
require_relative
'../qa'
...
...
qa/bin/rubymine
View file @
ebfa44ad
#!/usr/bin/env ruby
# frozen_string_literal: true
require_relative
'../qa'
...
...
qa/qa/fixtures/auto_devops_rack/Gemfile
View file @
ebfa44ad
# frozen_string_literal: true
source
'https://rubygems.org'
gem
'rack'
gem
'rake'
qa/qa/fixtures/auto_devops_rack/Rakefile
View file @
ebfa44ad
# frozen_string_literal: true
require
'rake/testtask'
task
default:
%w[test]
...
...
qa/qa/fixtures/auto_devops_rack/config.ru
View file @
ebfa44ad
# frozen_string_literal: true
run
lambda
{
|
env
|
[
200
,
{
'Content-Type'
=>
'text/plain'
},
StringIO
.
new
(
"Hello World!
#{
ENV
[
'OPTIONAL_MESSAGE'
]
}
\n
"
)]
}
qa/qa/page/page_concern.rb
View file @
ebfa44ad
# frozen_string_literal: true
module
QA
module
Page
module
PageConcern
...
...
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