diff options
author | Robin Tweedie <robin@songkick.com> | 2014-04-15 13:12:49 +0100 |
---|---|---|
committer | Robin Tweedie <robin@songkick.com> | 2014-04-15 13:22:32 +0100 |
commit | b335def167f1141995810d32d700ef3f4d036cd4 (patch) | |
tree | d4295dc2f635e4107d1e6530fa1ab1cef6e9e7fa /activerecord/lib | |
parent | a230530bb7564614ee852e42aca14491ecf48aff (diff) | |
download | rails-b335def167f1141995810d32d700ef3f4d036cd4.tar.gz rails-b335def167f1141995810d32d700ef3f4d036cd4.tar.bz2 rails-b335def167f1141995810d32d700ef3f4d036cd4.zip |
use YAML.load_file in database tasks example
rather than YAML.load(File.read(path)). YAML.load_file is also used in
guides/rails_guides/helper.rb since 2011, the only other precedent I could find.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/tasks/database_tasks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/tasks/database_tasks.rb b/activerecord/lib/active_record/tasks/database_tasks.rb index 6ce0495f6f..168b338b97 100644 --- a/activerecord/lib/active_record/tasks/database_tasks.rb +++ b/activerecord/lib/active_record/tasks/database_tasks.rb @@ -28,7 +28,7 @@ module ActiveRecord # 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.database_configuration = YAML.load_file('my_database_config.yml') # DatabaseTasks.db_dir = 'db' # # other settings... # |