From 842bc43f7f1cacf54b630e91de32f50456b1bff6 Mon Sep 17 00:00:00 2001 From: Kasper Timm Hansen Date: Tue, 8 Jan 2019 21:45:38 +0100 Subject: The frameworks list is order dependent. Ref: https://github.com/rails/rails/commit/d507f332a955eed3d3af805a0d417fb56379a6b9 --- tasks/release.rb | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'tasks') 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(" ") } -- cgit v1.2.3