Module: ServiceActor::Attributable

Defined in:
lib/service_actor/attributable.rb

Overview

DSL to document the accepted attributes.

class CreateUser < Actor
  input :name
  output :name
end

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



11
12
13
# File 'lib/service_actor/attributable.rb', line 11

def included(base)
  base.extend(ClassMethods)
end