File: version.rb

package info (click to toggle)
ruby-mime-types 3.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 336 kB
  • sloc: ruby: 2,006; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 255 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

##
module MIME
  class Types
    # The released version of the mime-types library.
    VERSION = "3.7.0"
  end

  class Type
    # The released version of the mime-types library.
    VERSION = MIME::Types::VERSION
  end
end