我brakeman
在我的应用程序中使用安全检查。我想跳过一些
误报的方法和 I Mark Methods as Safe
,但我想添加一个flag
to 方法以在brakeman
扫描应用程序时跳过该方法。
例子:
class User < ActiveRecord::Base
# I want to skip this method when brakeman scan the application
# Kind of `flag` to skip the method
def profile
# ..
end
def company
#..
end
end
我想添加一个文件,我可以在其中管理需要跳过的标签。
有谁知道我该怎么做?非常感谢您的帮助。