Sha256: 787ca6827fcd3cbd65414da1e8d41dbb88cf0df747f0912395d68d97ffc52ec6
Contents?: true
Size: 551 Bytes
Versions: 6803
Compression:
Stored size: 551 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop # This module provides a list of methods that are: # 1. In the NilClass by default # 2. Added to NilClass by explicitly requiring any standard libraries # 3. Cop's configuration parameter Whitelist. module NilMethods private def nil_methods nil.methods + other_stdlib_methods + whitelist end def other_stdlib_methods [:to_d] end def whitelist cop_config['Whitelist'].map(&:to_sym) end end end end
Version data entries
6,803 entries across 6,782 versions & 24 rubygems