Sha256: e2237c540b5ff45d745de66dc1e94221af4a0829e8695a2bfeac71fd4ffc06fd

Contents?: true

Size: 1.29 KB

Versions: 37

Compression:

Stored size: 1.29 KB

Contents

# Copyright (C) 2013  Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

module ChupaText
  module MIMEType
    class << self
      # @return [MIMETypeRegistry] The MIME type registry for this
      #   process.
      def registry
        @@registry ||= MIMETypeRegistry.new
      end

      # Normally, this method should not be used. It is just for test.
      #
      # @param [MIMETypeRegistry, nil] registry
      #   The new MIME type registry for this process.
      #   If you specify `nil`, reset the registry.
      def registry=(registry)
        @@registry = registry
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
chupa-text-1.3.6 lib/chupa-text/mime-type.rb
chupa-text-1.3.5 lib/chupa-text/mime-type.rb
chupa-text-1.3.4 lib/chupa-text/mime-type.rb
chupa-text-1.3.3 lib/chupa-text/mime-type.rb
chupa-text-1.3.2 lib/chupa-text/mime-type.rb
chupa-text-1.3.1 lib/chupa-text/mime-type.rb
chupa-text-1.3.0 lib/chupa-text/mime-type.rb
chupa-text-1.2.9 lib/chupa-text/mime-type.rb
chupa-text-1.2.8 lib/chupa-text/mime-type.rb
chupa-text-1.2.7 lib/chupa-text/mime-type.rb
chupa-text-1.2.6 lib/chupa-text/mime-type.rb
chupa-text-1.2.5 lib/chupa-text/mime-type.rb
chupa-text-1.2.4 lib/chupa-text/mime-type.rb
chupa-text-1.2.3 lib/chupa-text/mime-type.rb
chupa-text-1.2.2 lib/chupa-text/mime-type.rb
chupa-text-1.2.1 lib/chupa-text/mime-type.rb
chupa-text-1.2.0 lib/chupa-text/mime-type.rb
chupa-text-1.1.9 lib/chupa-text/mime-type.rb
chupa-text-1.1.8 lib/chupa-text/mime-type.rb
chupa-text-1.1.7 lib/chupa-text/mime-type.rb