Method: Helm.databases
- Defined in:
- lib/helm.rb
.databases ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/helm.rb', line 16 def databases @databases ||= Hash.new do |hash, conn_string| hash[conn_string] = Sequel::connect(conn_string, :logger => logger).tap do |db| db.extension(:pretty_table) end end end |