diff options
-rw-r--r-- | tasks/release.rb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tasks/release.rb b/tasks/release.rb index 6f0b419849..600e716a8d 100644 --- a/tasks/release.rb +++ b/tasks/release.rb @@ -1,17 +1,18 @@ # frozen_string_literal: true +# Order dependent. E.g. Action Mailbox depends on Active Record so it should be after. FRAMEWORKS = %w( - activejob + activesupport activemodel activerecord - activestorage - activesupport + actionview + actionpack + activejob + actionmailer actioncable + activestorage actionmailbox - actionmailer - actionpack actiontext - actionview railties ) FRAMEWORK_NAMES = Hash.new { |h, k| k.split(/(?<=active|action)/).map(&:capitalize).join(" ") } |