aboutsummaryrefslogtreecommitdiffstats
path: root/tasks
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2019-01-15 17:18:52 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2019-01-15 17:18:52 +0100
commita64d7b470a6c1dacbce82dc421a3daed4e403a7d (patch)
tree49cd88455e3dec32323f8ec0b4c83b5078d3e1cd /tasks
parent41ffddbc8b7faec66a26bd48dfd36a9def6cc23f (diff)
downloadrails-a64d7b470a6c1dacbce82dc421a3daed4e403a7d.tar.gz
rails-a64d7b470a6c1dacbce82dc421a3daed4e403a7d.tar.bz2
rails-a64d7b470a6c1dacbce82dc421a3daed4e403a7d.zip
Install Action Mailbox and Action Text when verifying release.
Diffstat (limited to 'tasks')
-rw-r--r--tasks/release.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/tasks/release.rb b/tasks/release.rb
index 600e716a8d..c1816cf533 100644
--- a/tasks/release.rb
+++ b/tasks/release.rb
@@ -180,6 +180,8 @@ namespace :all do
# Replace the generated gemfile entry with the exact version.
File.write("Gemfile", File.read("Gemfile").sub(/^gem 'rails.*/, "gem 'rails', '#{version}'"))
sh "bundle"
+ sh "rails action_mailbox:install"
+ sh "rails action_text:install"
sh "rails generate scaffold user name admin:boolean && rails db:migrate"