diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-10-14 11:14:39 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-10-14 11:15:40 +0200 |
commit | 31af8c90b60dc475fd80d2919bfb874b4acc4507 (patch) | |
tree | b48e66354db81e1b9b9a83614c044d5a6292c235 /activerecord/lib/active_record/tasks | |
parent | 215e128ddc12c98e8b6f43eca27bff0bb115461b (diff) | |
download | rails-31af8c90b60dc475fd80d2919bfb874b4acc4507.tar.gz rails-31af8c90b60dc475fd80d2919bfb874b4acc4507.tar.bz2 rails-31af8c90b60dc475fd80d2919bfb874b4acc4507.zip |
fix RDoc list markup in `DatabaseTasks`. [ci skip]
Diffstat (limited to 'activerecord/lib/active_record/tasks')
-rw-r--r-- | activerecord/lib/active_record/tasks/database_tasks.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/activerecord/lib/active_record/tasks/database_tasks.rb b/activerecord/lib/active_record/tasks/database_tasks.rb index f1141a8613..39da32d65b 100644 --- a/activerecord/lib/active_record/tasks/database_tasks.rb +++ b/activerecord/lib/active_record/tasks/database_tasks.rb @@ -18,13 +18,13 @@ module ActiveRecord # # The possible config values are: # - # * +env+: current environment (like Rails.env). - # * +database_configuration+: configuration of your databases (as in +config/database.yml+). - # * +db_dir+: your +db+ directory. - # * +fixtures_path+: a path to fixtures directory. - # * +migrations_paths+: a list of paths to directories with migrations. - # * +seed_loader+: an object which will load seeds, it needs to respond to the +load_seed+ method. - # * +root+: a path to the root of the application. + # * +env+: current environment (like Rails.env). + # * +database_configuration+: configuration of your databases (as in +config/database.yml+). + # * +db_dir+: your +db+ directory. + # * +fixtures_path+: a path to fixtures directory. + # * +migrations_paths+: a list of paths to directories with migrations. + # * +seed_loader+: an object which will load seeds, it needs to respond to the +load_seed+ method. + # * +root+: a path to the root of the application. # # Example usage of +DatabaseTasks+ outside Rails could look as such: # |