Sha256: 1e24d8943090e7869d94efe21c402ebc1a7889c9aaf3ae00b88ba86ecabd95af
Contents?: true
Size: 697 Bytes
Versions: 18
Compression:
Stored size: 697 Bytes
Contents
# Copyright (c) 2023 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true require 'delegate' # Some developers override various methods on Delegator, which can often # involve changing expected method parity/behavior which in turn prevents us # from being able to reliably use affected methods. Let's alias these methods # so that we always have access to them. # # This is a special case in that we're those developers, so we violate the cs__ # namespacing here to avoid that. class Delegator # breaks from convention to not conflict w/ Object#respond_to? alias_method :cs__delegator_respond_to?, :respond_to? end
Version data entries
18 entries across 18 versions & 1 rubygems