Class: Clowne::Declarations::AfterPersist

Inherits:
Base
  • Object
show all
Defined in:
lib/clowne/declarations/after_persist.rb

Overview

:nodoc: all

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#matches?

Constructor Details

#initialize(&block) ⇒ AfterPersist

Returns a new instance of AfterPersist.

Raises:

  • (ArgumentError)


8
9
10
11
12
# File 'lib/clowne/declarations/after_persist.rb', line 8

def initialize(*, &block)
  raise ArgumentError, "Block is required for after_persist" unless block

  @block = block
end

Instance Attribute Details

#blockObject (readonly)

Returns the value of attribute block.



6
7
8
# File 'lib/clowne/declarations/after_persist.rb', line 6

def block
  @block
end

Instance Method Details

#compile(plan) ⇒ Object



14
15
16
# File 'lib/clowne/declarations/after_persist.rb', line 14

def compile(plan)
  plan.add(:after_persist, self)
end