aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2018-07-30 16:41:26 -0700
committerDavid Heinemeier Hansson <david@loudthinking.com>2018-07-30 16:41:26 -0700
commitd8a26dab3eb8c4c1c5f9d81bf2987e211ba7f80e (patch)
tree15293eb783b994969c58e86963e670a73c09750e /lib/tasks
parentb430ba4754f59934acb4806c83d10dee5af8de9e (diff)
downloadrails-d8a26dab3eb8c4c1c5f9d81bf2987e211ba7f80e.tar.gz
rails-d8a26dab3eb8c4c1c5f9d81bf2987e211ba7f80e.tar.bz2
rails-d8a26dab3eb8c4c1c5f9d81bf2987e211ba7f80e.zip
You cant run Action Text without Active Storage setup, so lets just set it up for you, rather than ask you to.
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/actiontext.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/actiontext.rake b/lib/tasks/actiontext.rake
index 817a4c67f0..01f8697c61 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: %i( environment copy_migration copy_stylesheet )
+ task install: %w( environment active_storage:install copy_migration copy_stylesheet )
task :copy_migration do
if Rake::Task.task_defined?("action_text:install:migrations")