Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mastodon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pierre Boudes
mastodon
Commits
a0c9f244
Unverified
Commit
a0c9f244
authored
1 year ago
by
Matt Jankowski
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix Performance/MethodObjectAsBlock cop (#24798)
parent
97385f27
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.rubocop_todo.yml
+0
-5
0 additions, 5 deletions
.rubocop_todo.yml
app/models/account_suggestions/source.rb
+1
-1
1 addition, 1 deletion
app/models/account_suggestions/source.rb
spec/models/export_spec.rb
+6
-6
6 additions, 6 deletions
spec/models/export_spec.rb
with
7 additions
and
12 deletions
.rubocop_todo.yml
+
0
−
5
View file @
a0c9f244
...
...
@@ -322,11 +322,6 @@ Performance/MapCompact:
-
'
db/migrate/20200407202420_migrate_unavailable_inboxes.rb'
-
'
spec/presenters/status_relationships_presenter_spec.rb'
Performance/MethodObjectAsBlock
:
Exclude
:
-
'
app/models/account_suggestions/source.rb'
-
'
spec/models/export_spec.rb'
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: MaxKeyValuePairs.
Performance/RedundantMerge
:
...
...
This diff is collapsed.
Click to expand it.
app/models/account_suggestions/source.rb
+
1
−
1
View file @
a0c9f244
...
...
@@ -18,7 +18,7 @@ class AccountSuggestions::Source
def
as_ordered_suggestions
(
scope
,
ordered_list
)
return
[]
if
ordered_list
.
empty?
map
=
scope
.
index_by
(
&
method
(
:
to_ordered_list_key
))
map
=
scope
.
index_by
{
|
account
|
to_ordered_list_key
(
account
)
}
ordered_list
.
map
{
|
ordered_list_key
|
map
[
ordered_list_key
]
}.
compact
.
map
do
|
account
|
AccountSuggestions
::
Suggestion
.
new
(
...
...
This diff is collapsed.
Click to expand it.
spec/models/export_spec.rb
+
6
−
6
View file @
a0c9f244
...
...
@@ -10,7 +10,7 @@ describe Export do
describe
'to_csv'
do
it
'returns a csv of the blocked accounts'
do
target_accounts
.
each
(
&
account
.
method
(
:block!
))
target_accounts
.
each
{
|
target_account
|
account
.
block!
(
target_account
)
}
export
=
Export
.
new
(
account
).
to_blocked_accounts_csv
results
=
export
.
strip
.
split
...
...
@@ -20,7 +20,7 @@ describe Export do
end
it
'returns a csv of the muted accounts'
do
target_accounts
.
each
(
&
account
.
method
(
:mute!
))
target_accounts
.
each
{
|
target_account
|
account
.
mute!
(
target_account
)
}
export
=
Export
.
new
(
account
).
to_muted_accounts_csv
results
=
export
.
strip
.
split
(
"
\n
"
)
...
...
@@ -31,7 +31,7 @@ describe Export do
end
it
'returns a csv of the following accounts'
do
target_accounts
.
each
(
&
account
.
method
(
:follow!
))
target_accounts
.
each
{
|
target_account
|
account
.
follow!
(
target_account
)
}
export
=
Export
.
new
(
account
).
to_following_accounts_csv
results
=
export
.
strip
.
split
(
"
\n
"
)
...
...
@@ -51,17 +51,17 @@ describe Export do
describe
'total_follows'
do
it
'returns the total number of the followed accounts'
do
target_accounts
.
each
(
&
account
.
method
(
:follow!
))
target_accounts
.
each
{
|
target_account
|
account
.
follow!
(
target_account
)
}
expect
(
Export
.
new
(
account
.
reload
).
total_follows
).
to
eq
2
end
it
'returns the total number of the blocked accounts'
do
target_accounts
.
each
(
&
account
.
method
(
:block!
))
target_accounts
.
each
{
|
target_account
|
account
.
block!
(
target_account
)
}
expect
(
Export
.
new
(
account
.
reload
).
total_blocks
).
to
eq
2
end
it
'returns the total number of the muted accounts'
do
target_accounts
.
each
(
&
account
.
method
(
:mute!
))
target_accounts
.
each
{
|
target_account
|
account
.
mute!
(
target_account
)
}
expect
(
Export
.
new
(
account
.
reload
).
total_mutes
).
to
eq
2
end
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment