module Respectable

Constants

VERSION

Public Class Methods

included(base) click to toggle source
# File lib/respectable.rb, line 5
def self.included(base)
  base.extend Interface
  base.class_eval do
    include Interface
  end
end