module Lemo::Ormo

simple replacement for ||= (y'know or-or-equals) in others words stores values as plain old @name, and nil means same as does-not-exist

Public Class Methods

included( other_module ) click to toggle source

hook in class methods on include

# File lib/lemo/ormo.rb, line 55
def self.included( other_module )
  other_module.extend ClassMethods
end