Commit ba0d27fe authored by Douwe Maan's avatar Douwe Maan

Update rubocop and rubocop-rspec and regenerate .rubocop_todo.yml

parent ec5a74ec
...@@ -630,10 +630,6 @@ Lint/EndInMethod: ...@@ -630,10 +630,6 @@ Lint/EndInMethod:
Lint/EnsureReturn: Lint/EnsureReturn:
Enabled: true Enabled: true
# The use of eval represents a serious security risk.
Lint/Eval:
Enabled: true
# Catches floating-point literals too large or small for Ruby to represent. # Catches floating-point literals too large or small for Ruby to represent.
Lint/FloatOutOfRange: Lint/FloatOutOfRange:
Enabled: true Enabled: true
...@@ -810,6 +806,10 @@ Performance/TimesMap: ...@@ -810,6 +806,10 @@ Performance/TimesMap:
Security/JSONLoad: Security/JSONLoad:
Enabled: true Enabled: true
# This cop checks for the use of *Kernel#eval*.
Security/Eval:
Enabled: true
# Rails ####################################################################### # Rails #######################################################################
# Enables Rails cops. # Enables Rails cops.
......
# This configuration was generated by # This configuration was generated by
# `rubocop --auto-gen-config --exclude-limit 0` # `rubocop --auto-gen-config --exclude-limit 0`
# on 2017-02-22 12:40:11 -0600 using RuboCop version 0.47.1. # on 2017-02-22 13:02:35 -0600 using RuboCop version 0.47.1.
# The point is for the user to remove these configuration records # The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base. # one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new # Note that changes in the inspected code, or installation of new
...@@ -105,10 +105,6 @@ Style/FormatString: ...@@ -105,10 +105,6 @@ Style/FormatString:
Style/GuardClause: Style/GuardClause:
Enabled: false Enabled: false
# Offense count: 2
Style/IdenticalConditionalBranches:
Enabled: false
# Offense count: 14 # Offense count: 14
Style/IfInsideElse: Style/IfInsideElse:
Enabled: false Enabled: false
......
...@@ -29,12 +29,9 @@ module Gitlab ...@@ -29,12 +29,9 @@ module Gitlab
def save(provider = 'OAuth') def save(provider = 'OAuth')
unauthorized_to_create unless gl_user unauthorized_to_create unless gl_user
if needs_blocking? gl_user.save!
gl_user.save!
gl_user.block gl_user.block if needs_blocking?
else
gl_user.save!
end
log.info "(#{provider}) saving user #{auth_hash.email} from login with extern_uid => #{auth_hash.uid}" log.info "(#{provider}) saving user #{auth_hash.email} from login with extern_uid => #{auth_hash.uid}"
gl_user gl_user
......
...@@ -18,7 +18,7 @@ def Notify.deliver_later ...@@ -18,7 +18,7 @@ def Notify.deliver_later
self self
end end
eos eos
eval(code) # rubocop:disable Lint/Eval eval(code) # rubocop:disable Security/Eval
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment