module Skywalker::Callable

Public Class Methods

included(klass) click to toggle source

Extend instead of include because we'd prefer to keep a uniform interface among Skywalker extensions, and we have in the past had additional instance methods defined herein.

@since 2.2.0

# File lib/skywalker/callable.rb, line 11
def self.included(klass)
  klass.extend ClassMethods
end