method

mime_types_implementation=

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: ActionView::Template
mime_types_implementation=(implementation) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/template.rb, line 184
      def mime_types_implementation=(implementation)
        # This method isn't thread-safe, but it's not supposed
        # to be called after initialization
        if self::Types != implementation
          remove_const(:Types)
          const_set(:Types, implementation)
        end
      end
Register or log in to add new notes.