From ce90ded4ca07a92b1bdf72c9296679b5d523383f Mon Sep 17 00:00:00 2001 From: Kevin Solorio Date: Tue, 8 Jan 2019 10:36:33 -0800 Subject: 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 --- tasks/release.rb | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'tasks') 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__) -- cgit v1.2.3