module ActiveSupport::Messages::SerializerWithFallback

def self.[](format)

:nodoc:
:nodoc:
def self.[](format)
  if format.to_s.include?("message_pack") && !defined?(ActiveSupport::MessagePack)
    require "active_support/message_pack"
  end
  SERIALIZERS.fetch(format)
end