Class: PGCrypto::TableManager

Inherits:
Table
  • Object
show all
Defined in:
lib/pgcrypto/table_manager.rb

Instance Method Summary collapse

Methods inherited from Table

#[]=

Instance Method Details

#[](key) ⇒ Object



13
14
15
16
# File 'lib/pgcrypto/table_manager.rb', line 13

def [](key)
  return {} unless key
  super(key) || self[key] = Table.new
end