Class: PGCrypto::Table

Inherits:
Hash
  • Object
show all
Defined in:
lib/pgcrypto/table.rb

Direct Known Subclasses

TableManager

Instance Method Summary collapse

Instance Method Details

#[](key) ⇒ Object



3
4
5
# File 'lib/pgcrypto/table.rb', line 3

def [](key)
  super(key.to_sym)
end

#[]=(key, value) ⇒ Object



7
8
9
# File 'lib/pgcrypto/table.rb', line 7

def []=(key, value)
  super key.to_sym, value
end