Sha256: 7e471ae7da3dc2e7bf75967dd3017d9f53d9b6764c60ba4bfad330b428d6ff47

Contents?: true

Size: 1.58 KB

Versions: 37

Compression:

Stored size: 1.58 KB

Contents

# frozen_string_literal: true

module ActiveRecord
  class DatabaseConfigurations
    # ActiveRecord::Base.configurations will return either a HashConfig or
    # UrlConfig respectively. It will never return a DatabaseConfig object,
    # as this is the parent class for the types of database configuration objects.
    class DatabaseConfig # :nodoc:
      attr_reader :env_name, :name

      attr_accessor :owner_name

      def initialize(env_name, name)
        @env_name = env_name
        @name = name
      end

      def spec_name
        @name
      end
      deprecate spec_name: "please use name instead"

      def config
        raise NotImplementedError
      end

      def adapter_method
        "#{adapter}_connection"
      end

      def host
        raise NotImplementedError
      end

      def database
        raise NotImplementedError
      end

      def _database=(database)
        raise NotImplementedError
      end

      def adapter
        raise NotImplementedError
      end

      def pool
        raise NotImplementedError
      end

      def checkout_timeout
        raise NotImplementedError
      end

      def reaping_frequency
        raise NotImplementedError
      end

      def idle_timeout
        raise NotImplementedError
      end

      def replica?
        raise NotImplementedError
      end

      def migrations_paths
        raise NotImplementedError
      end

      def for_current_env?
        env_name == ActiveRecord::ConnectionHandling::DEFAULT_ENV.call
      end

      def schema_cache_path
        raise NotImplementedError
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 4 rubygems

Version Path
activerecord-6.1.7.10 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.7.9 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.7.8 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.7.7 lib/active_record/database_configurations/database_config.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-6.1.6.1/lib/active_record/database_configurations/database_config.rb
activerecord-6.1.7.6 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.7.5 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.7.4 lib/active_record/database_configurations/database_config.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activerecord-6.1.6.1/lib/active_record/database_configurations/database_config.rb
activerecord-6.1.7.3 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.7.2 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.7.1 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.7 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.6.1 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.6 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.5.1 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.5 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.4.7 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.4.6 lib/active_record/database_configurations/database_config.rb
activerecord-6.1.4.5 lib/active_record/database_configurations/database_config.rb