Module: Hstorable

Defined in:
lib/hstorable.rb,
lib/hstorable/base.rb,
lib/hstorable/version.rb,
lib/hstorable/model_fields.rb,
lib/hstorable/simple_fields.rb

Defined Under Namespace

Modules: Base, ModelFields, SimpleFields

Constant Summary collapse

VERSION =
"0.0.5"

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



6
7
8
9
10
# File 'lib/hstorable.rb', line 6

def self.included(base)
  base.extend Hstorable::Base
  base.extend Hstorable::SimpleFields
  base.extend Hstorable::ModelFields
end