1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Install Action Mailbox and Action Text when verifying release.

This commit is contained in:
Kasper Timm Hansen 2019-01-15 17:18:52 +01:00
parent 41ffddbc8b
commit a64d7b470a
No known key found for this signature in database
GPG key ID: 191153215EDA53D8

View file

@ -180,6 +180,8 @@ namespace :all do
# Replace the generated gemfile entry with the exact version. # Replace the generated gemfile entry with the exact version.
File.write("Gemfile", File.read("Gemfile").sub(/^gem 'rails.*/, "gem 'rails', '#{version}'")) File.write("Gemfile", File.read("Gemfile").sub(/^gem 'rails.*/, "gem 'rails', '#{version}'"))
sh "bundle" sh "bundle"
sh "rails action_mailbox:install"
sh "rails action_text:install"
sh "rails generate scaffold user name admin:boolean && rails db:migrate" sh "rails generate scaffold user name admin:boolean && rails db:migrate"