diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2017-07-22 09:39:42 -0500 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2017-07-22 09:39:42 -0500 |
commit | d0a9174d55fe39f6c1dcbec9df684aeea691b21d (patch) | |
tree | ae23525f452bea57d6acf6c2d6c16c48cc57483b | |
parent | 470ba694035f77d41603d2e8c791449cb181b7d9 (diff) | |
download | rails-d0a9174d55fe39f6c1dcbec9df684aeea691b21d.tar.gz rails-d0a9174d55fe39f6c1dcbec9df684aeea691b21d.tar.bz2 rails-d0a9174d55fe39f6c1dcbec9df684aeea691b21d.zip |
Move storage_services.yml to config for consistency
-rw-r--r-- | config/storage_services.yml (renamed from lib/active_storage/storage_services.yml) | 0 | ||||
-rw-r--r-- | lib/tasks/activestorage.rake | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/lib/active_storage/storage_services.yml b/config/storage_services.yml index c80a3e8453..c80a3e8453 100644 --- a/lib/active_storage/storage_services.yml +++ b/config/storage_services.yml diff --git a/lib/tasks/activestorage.rake b/lib/tasks/activestorage.rake index ea83707224..2fba4eaa8d 100644 --- a/lib/tasks/activestorage.rake +++ b/lib/tasks/activestorage.rake @@ -7,7 +7,7 @@ namespace :activestorage do FileUtils.mkdir_p Rails.root.join("tmp/storage") puts "Made storage and tmp/storage directories for development and testing" - FileUtils.cp File.expand_path("../../active_storage/storage_services.yml", __FILE__), Rails.root.join("config") + FileUtils.cp File.expand_path("../../../config/storage_services.yml", __FILE__), Rails.root.join("config") puts "Copied default configuration to config/storage_services.yml" migration_file_path = "db/migrate/#{Time.now.utc.strftime("%Y%m%d%H%M%S")}_active_storage_create_tables.rb" |