Fix Performance/DeletePrefix cop (#24796)
This commit is contained in:
parent
05e3abe9d9
commit
668a19a2f3
10 changed files with 9 additions and 24 deletions
|
@ -13,7 +13,7 @@ module ActivityPub::CaseTransform
|
|||
when Symbol then camel_lower(value.to_s).to_sym
|
||||
when String
|
||||
camel_lower_cache[value] ||= if value.start_with?('_:')
|
||||
"_:#{value.gsub(/\A_:/, '').underscore.camelize(:lower)}"
|
||||
"_:#{value.delete_prefix('_:').underscore.camelize(:lower)}"
|
||||
else
|
||||
value.underscore.camelize(:lower)
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue