Module: Magik::Model

Defined in:
lib/magik/model.rb

Overview

The model DSL — a thin, explicit wrapper over Sequel. No lazy-loading magic, no implicit N+1.

Implements: Phase 1 — Foundation of docs/idea/00-build-spec.md.

Planned DSL surface, copied from the spec:

* `model :Name do field/belongs_to/has_many/validate/scope end`
* `:money field type, integer-cents backed (floats forbidden)`
* `UUIDv7 primary keys`
* `tenant_id auto-injection`

Status: Not implemented — spec only. Every entry point below raises NotImplementedError. Nothing here reads config, touches a database or emits a byte of HTML.

See Also:

Constant Summary collapse

SPEC_PHASE =

The build-spec phase this subsystem implements.

Returns:

  • (String)
"Phase 1 — Foundation"
DSL_SURFACE =

The DSL this subsystem will expose, verbatim from the spec.

Returns:

  • (Array<String>)
[
  "model :Name do field/belongs_to/has_many/validate/scope end",
  ":money field type, integer-cents backed (floats forbidden)",
  "UUIDv7 primary keys",
  "tenant_id auto-injection"
].freeze
STATUS =

Implementation status of this subsystem.

Returns:

  • (String)
"Not implemented — spec only"

Class Method Summary collapse

Class Method Details

.define(*_args, **_options) ⇒ void

This method returns an undefined value.

Entry point for the Model DSL.

Parameters:

  • _args (Array)

    ignored

  • _options (Hash)

    ignored

Raises:

  • (NotImplementedError)

    always, until Phase 1 lands



45
46
47
# File 'lib/magik/model.rb', line 45

def self.define(*_args, **_options)
  raise NotImplementedError, "Magik::Model is spec-only; see docs/idea/00-build-spec.md"
end