mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
parent
48375319da
commit
842bc43f7f
1 changed files with 9 additions and 8 deletions
|
@ -1,17 +1,18 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# Order dependent. E.g. Action Mailbox depends on Active Record so it should be after.
|
||||||
FRAMEWORKS = %w(
|
FRAMEWORKS = %w(
|
||||||
activejob
|
activesupport
|
||||||
activemodel
|
activemodel
|
||||||
activerecord
|
activerecord
|
||||||
activestorage
|
|
||||||
activesupport
|
|
||||||
actioncable
|
|
||||||
actionmailbox
|
|
||||||
actionmailer
|
|
||||||
actionpack
|
|
||||||
actiontext
|
|
||||||
actionview
|
actionview
|
||||||
|
actionpack
|
||||||
|
activejob
|
||||||
|
actionmailer
|
||||||
|
actioncable
|
||||||
|
activestorage
|
||||||
|
actionmailbox
|
||||||
|
actiontext
|
||||||
railties
|
railties
|
||||||
)
|
)
|
||||||
FRAMEWORK_NAMES = Hash.new { |h, k| k.split(/(?<=active|action)/).map(&:capitalize).join(" ") }
|
FRAMEWORK_NAMES = Hash.new { |h, k| k.split(/(?<=active|action)/).map(&:capitalize).join(" ") }
|
||||||
|
|
Loading…
Reference in a new issue