class Dry::Core::Deprecations::Tagged

@api private

Public Class Methods

new(tag) click to toggle source
Calls superclass method
# File lib/dry/core/deprecations.rb, line 122
def initialize(tag)
  super()
  @tag = tag
end

Public Instance Methods

extended(base) click to toggle source
# File lib/dry/core/deprecations.rb, line 127
def extended(base)
  base.extend Interface
  base.deprecation_tag @tag
end