From 73d1f5f310e4dc3acb1ea502143d679f99931840 Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Sun, 4 Feb 2018 04:27:18 +0900 Subject: Add nodoc to `migrations_paths` and `migration_context` in `AbstractAdapter` These are internally used only. [ci skip] --- .../lib/active_record/connection_adapters/abstract_adapter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activerecord') diff --git a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb index 56a5ea153b..559f068c39 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb @@ -119,11 +119,11 @@ module ActiveRecord end end - def migrations_paths + def migrations_paths # :nodoc: @config[:migrations_paths] || Migrator.migrations_paths end - def migration_context + def migration_context # :nodoc: MigrationContext.new(migrations_paths) end -- cgit v1.2.3