aboutsummaryrefslogtreecommitdiffstats
path: root/tasks
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2019-01-08 21:45:38 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2019-01-08 21:45:38 +0100
commit842bc43f7f1cacf54b630e91de32f50456b1bff6 (patch)
tree45c2dc066c3268392e021cf71d65be9d09837d9a /tasks
parent48375319da490b421e994f22480a43c0f9983ab1 (diff)
downloadrails-842bc43f7f1cacf54b630e91de32f50456b1bff6.tar.gz
rails-842bc43f7f1cacf54b630e91de32f50456b1bff6.tar.bz2
rails-842bc43f7f1cacf54b630e91de32f50456b1bff6.zip
The frameworks list is order dependent.
Ref: https://github.com/rails/rails/commit/d507f332a955eed3d3af805a0d417fb56379a6b9
Diffstat (limited to 'tasks')
-rw-r--r--tasks/release.rb13
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(" ") }