Module: Lotus::Action::Validatable

Defined in:
lib/lotus/action/validatable.rb

Overview

Since:

  • 0.1.0

Defined Under Namespace

Modules: ClassMethods

Constant Summary collapse

PARAMS_CLASS_NAME =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Defines the class name for anoymous params

Since:

  • 0.3.0

'Params'.freeze

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object

Since:

  • 0.1.0



10
11
12
13
14
15
# File 'lib/lotus/action/validatable.rb', line 10

def self.included(base)
  base.class_eval do
    extend ClassMethods
    expose :params, :errors
  end
end