Class: Sequel::Plugins::ActiveModel::Errors

Inherits:
Model::Errors show all
Defined in:
lib/sequel/plugins/active_model.rb

Overview

ActiveModel compliant error class

Instance Method Summary collapse

Methods inherited from Model::Errors

#add, #count, #empty?, #full_messages, #on

Methods inherited from Hash

#&, #case, #hstore, #pg_json, #pg_jsonb, #sql_expr, #sql_negate, #sql_or, #|, #~

Instance Method Details

#[](k) ⇒ Object

Add autovivification so that #[] always returns an array.



24
25
26
# File 'lib/sequel/plugins/active_model.rb', line 24

def [](k)
  fetch(k){self[k] = []}
end