提交 414ab0c4 编写于 作者: P Piotr Sarnacki

Add some documentation to ActiveRecord::Tasks::DatabaseTasks

This is a public class, which could be used directly in order to allow
easier database management. Now it also contains settings, which will be
used by databases.rake.
上级 4522761c
......@@ -3,7 +3,35 @@ module Tasks # :nodoc:
class DatabaseAlreadyExists < StandardError; end # :nodoc:
class DatabaseNotSupported < StandardError; end # :nodoc:
module DatabaseTasks # :nodoc:
# <tt>ActiveRecord::Tasks::DatabaseTasks</tt> is a utility class, which encapsulates
# logic behind common tasks used to manage database and migrations.
#
# The tasks defined here are used in rake tasks provided by Active Record.
#
# In order to use DatabaseTasks, a few config values need to be set. All the needed
# config values are set by rails already, so it's necessary to do it only if you
# want to change the default or when you want to use Active Record outside of Rails
# (in such case after cofniguring database tasks, you can also use rake tasks defined in
# Active Record)
#
#
# The possible config values are the following:
#
# * db_dir: your 'db' directory
# * seed_loader: an object which will load seeds, it needs to respond to `load_seed` method
# * database_configuration: configuration of your databases (as in config/database.yml)
# * migrations_paths: a list of paths to directories with migrations
# * fixtures_path: a path to fixtures directory
#
# Example usage of DatabaseTasks outside Rails could look as such:
#
# include ActiveRecord::Tasks
# DatabaseTasks.database_configuration = YAML.load(File.read('my_database_config.yml'))
# DatabaseTasks.db_dir = 'db'
# # other settings...
#
# DatabaseTasks.create_current('production')
module DatabaseTasks
extend self
attr_writer :current_config
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册