module Middleman::CoreExtensions::Request

def registered(app)

Other tags:
    Private: -
def registered(app)
  # CSSPIE HTC File
  ::Rack::Mime::MIME_TYPES['.htc'] = 'text/x-component'
  # Let's serve all HTML as UTF-8
  ::Rack::Mime::MIME_TYPES['.html'] = 'text/html; charset=utf-8'
  ::Rack::Mime::MIME_TYPES['.htm'] = 'text/html; charset=utf-8'
  app.extend ClassMethods
  app.extend ServerMethods
  Middleman.extend CompatibleClassMethods
  # Include instance methods
  app.send :include, InstanceMethods
end