instance method
config
Ruby on Rails 5.2.8.1
Since v4.0.13 Last seen in v6.1.7.10Signature
config()
No documentation comment.
Source
# File railties/lib/rails/commands/dbconsole/dbconsole_command.rb, line 90
def config
@config ||= begin
# We need to check whether the user passed the connection the
# first time around to show a consistent error message to people
# relying on 2-level database configuration.
if @options["connection"] && configurations[connection].blank?
raise ActiveRecord::AdapterNotSpecified, "'#{connection}' connection is not configured. Available configuration: #{configurations.inspect}"
elsif configurations[environment].blank? && configurations[connection].blank?
raise ActiveRecord::AdapterNotSpecified, "'#{environment}' database is not configured. Available configuration: #{configurations.inspect}"
else
configurations[environment].presence || configurations[connection]
end
end
end
Defined in railties/lib/rails/commands/dbconsole/dbconsole_command.rb line 90
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::DBConsole