module Callee

Constants

VERSION

Public Class Methods

included(other) click to toggle source
# File lib/callee.rb, line 5
def self.included(other)
  other.extend(Dry::Initializer)
  other.extend(ClassMethods)
end

Public Instance Methods

call() click to toggle source
# File lib/callee.rb, line 20
def call
  raise "Not implemented"
end