Sha256: 1cff298d6eef4446efcc401edb9dd7116a98430440f0e1ec1f087c3086aab8aa

Contents?: true

Size: 344 Bytes

Versions: 4

Compression:

Stored size: 344 Bytes

Contents

module SimpleModel

  autoload :ExtendCore, "simple_model/extend_core"
  autoload :Attributes, "simple_model/attributes"
  autoload :Errors, "simple_model/errors"
  autoload :Validation, "simple_model/validation"

  class Base
    include SimpleModel::Errors
    include SimpleModel::Attributes
    include SimpleModel::Validation   
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
simple_model-0.1.2 lib/simple_model.rb
simple_model-0.1.1 lib/simple_model.rb
simple_model-0.1.0 lib/simple_model.rb
simple_model-0.0.1 lib/simple_model.rb