mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add requires for mimemagic
This dependency was recently added, but not the require. This looked like it worked because sometimes marcel does the require for us.
This commit is contained in:
parent
397bfb0e83
commit
f4aa54d487
2 changed files with 4 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require "mimemagic"
|
||||
|
||||
module ActiveStorage::Blob::Representable
|
||||
extend ActiveSupport::Concern
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require "mimemagic"
|
||||
|
||||
# A set of transformations that can be applied to a blob to create a variant. This class is exposed via
|
||||
# the ActiveStorage::Blob#variant method and should rarely be used directly.
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue