module Interjectable

Constants

MethodAlreadyDefined
VERSION

Public Class Methods

extended(mod) click to toggle source
# File lib/interjectable.rb, line 12
def self.extended(mod)
  mod.send(:extend, ClassMethods)
end
included(mod) click to toggle source
# File lib/interjectable.rb, line 8
def self.included(mod)
  mod.send(:extend, ClassMethods)
end