aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-02-04 04:27:18 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-02-04 04:27:18 +0900
commit73d1f5f310e4dc3acb1ea502143d679f99931840 (patch)
tree0d4bc721469a03395a7b9068b9e273029cee19e9 /activerecord
parent883f51c4b818688caa99fb74095463f2b6f052a9 (diff)
downloadrails-73d1f5f310e4dc3acb1ea502143d679f99931840.tar.gz
rails-73d1f5f310e4dc3acb1ea502143d679f99931840.tar.bz2
rails-73d1f5f310e4dc3acb1ea502143d679f99931840.zip
Add nodoc to `migrations_paths` and `migration_context` in `AbstractAdapter`
These are internally used only. [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract_adapter.rb4
1 files changed, 2 insertions, 2 deletions
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