aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/release.rb
diff options
context:
space:
mode:
authorKevin Solorio <soloriok@gmail.com>2019-01-08 10:36:33 -0800
committerKevin Solorio <soloriok@gmail.com>2019-01-08 10:36:33 -0800
commitce90ded4ca07a92b1bdf72c9296679b5d523383f (patch)
treec6a81c4118b671988cd83e53d00f836c2e14313c /tasks/release.rb
parentcd16413ef3280a50c1b13b1ed7be1a907fad88d1 (diff)
downloadrails-ce90ded4ca07a92b1bdf72c9296679b5d523383f.tar.gz
rails-ce90ded4ca07a92b1bdf72c9296679b5d523383f.tar.bz2
rails-ce90ded4ca07a92b1bdf72c9296679b5d523383f.zip
add new frameworks to tasks/release.rb
The Frameworks collection was missing actiontext and actionmailbox, this would mean they are skipped when running any tasks that iterated through this collection changes include Breaking up frameworks declaration into multiple lines and put them in order. This should make adding to the list easier and if you need to scan it, they will be in order you would expect Add `package` task to both actiontext and actionmailbox
Diffstat (limited to 'tasks/release.rb')
-rw-r--r--tasks/release.rb15
1 files changed, 14 insertions, 1 deletions
diff --git a/tasks/release.rb b/tasks/release.rb
index a13003aa27..6f0b419849 100644
--- a/tasks/release.rb
+++ b/tasks/release.rb
@@ -1,6 +1,19 @@
# frozen_string_literal: true
-FRAMEWORKS = %w( activesupport activemodel activerecord actionview actionpack activejob actionmailer actioncable activestorage railties )
+FRAMEWORKS = %w(
+ activejob
+ activemodel
+ activerecord
+ activestorage
+ activesupport
+ actioncable
+ actionmailbox
+ actionmailer
+ actionpack
+ actiontext
+ actionview
+ railties
+)
FRAMEWORK_NAMES = Hash.new { |h, k| k.split(/(?<=active|action)/).map(&:capitalize).join(" ") }
root = File.expand_path("..", __dir__)