Sha256: 0918cde0a92e8c6fc08ce578dfa2253536426ad26e3aca3499ab8065b3edc695
Contents?: true
Size: 434 Bytes
Versions: 32
Compression:
Stored size: 434 Bytes
Contents
# frozen_string_literal: true module Orchestration module Services module Database module Adapters module AdapterBase attr_reader :config def initialize(config = nil) @config = config end def console_command I18n.t("orchestration.dbconsole.#{name}") % config.settings.transform_keys(&:to_sym) end end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems