Sha256: b4b698214966b43d446300d5213e364ab135bb4744861fca0dafb81398e3118e

Contents?: true

Size: 611 Bytes

Versions: 1

Compression:

Stored size: 611 Bytes

Contents

module PowerAssert
  class << self
    def configuration
      @configuration ||= Configuration[false, false, true]
    end

    def configure
      yield configuration
    end
  end

  SUPPORT_ALIAS_METHOD = TracePoint.public_method_defined?(:callee_id)
  private_constant :SUPPORT_ALIAS_METHOD

  class Configuration < Struct.new(:lazy_inspection, :_trace_alias_method, :redefinition)
    def _trace_alias_method=(bool)
      super
      if SUPPORT_ALIAS_METHOD
        warn '_trace_alias_method option is obsolete. You no longer have to set it.'
      end
    end
  end
  private_constant :Configuration
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
power_assert-0.4.0 lib/power_assert/configuration.rb