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



5
6
7
8
# File 'lib/pgcrypto/table_manager.rb', line 5

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