module Seatbelt::Gate

Public: Module that provides method forward declaration named :implement.

Public Class Methods

included(base) click to toggle source
# File lib/seatbelt/core/gate.rb, line 7
def self.included(base)
  base.class_eval do
    include Proxy
    extend ImplementationCallee
    extend Synthesizeable
    extend ClassMethods
    private_class_method :implementation_methods,
                         :eigenmethods_class_level,
                         :initialize_implementation_method,
                         :implementation_from_superclass
  end
end