method

each_current_configuration

each_current_configuration(environment)
private

No documentation available.

# File activerecord/lib/active_record/tasks/database_tasks.rb, line 177
      def each_current_configuration(environment)
        environments = [environment]
        environments << 'test' if environment == 'development'

        configurations = ActiveRecord::Base.configurations.values_at(*environments)
        configurations.compact.each do |configuration|
          yield configuration unless configuration['database'].blank?
        end
      end