diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2018-10-01 17:05:15 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2018-10-01 17:05:15 -0700 |
commit | dac1e1ca07aedcb0a04bbecb37abdf0b8931cf5e (patch) | |
tree | bfe2eb600da5df353b6bfdc489f640d6d5f1674f | |
parent | 2dfec5ec85aa3e8339a82f961c25428b67c4c209 (diff) | |
download | rails-dac1e1ca07aedcb0a04bbecb37abdf0b8931cf5e.tar.gz rails-dac1e1ca07aedcb0a04bbecb37abdf0b8931cf5e.tar.bz2 rails-dac1e1ca07aedcb0a04bbecb37abdf0b8931cf5e.zip |
Ruby Active Storage install last as it may halt the dependency list
-rw-r--r-- | lib/tasks/actiontext.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/actiontext.rake b/lib/tasks/actiontext.rake index 32f3b90184..767fbf71b7 100644 --- a/lib/tasks/actiontext.rake +++ b/lib/tasks/actiontext.rake @@ -5,7 +5,7 @@ namespace :action_text do Rake::Task["install:migrations"].clear_comments desc "Copy over the migration, stylesheet, and JavaScript files" - task install: %w( environment active_storage:install copy_migration copy_stylesheet copy_fixtures ) + task install: %w( environment copy_migration copy_stylesheet copy_fixtures active_storage:install ) task :copy_migration do if Rake::Task.task_defined?("action_text:install:migrations") |