module RuboCop::Cop::NilMethods

def nil_methods

def nil_methods
  nil.methods + other_stdlib_methods + allowed_methods.map(&:to_sym)
end

def other_stdlib_methods

def other_stdlib_methods
  [:to_d]
end