mime-types 1.16 → 3.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/.standard.yml +4 -0
 - data/Code-of-Conduct.md +73 -0
 - data/Contributing.md +133 -0
 - data/History.md +335 -0
 - data/Licence.md +25 -0
 - data/Manifest.txt +27 -7
 - data/README.rdoc +194 -0
 - data/Rakefile +191 -278
 - data/lib/mime/type/columnar.rb +57 -0
 - data/lib/mime/type.rb +660 -0
 - data/lib/mime/types/_columnar.rb +137 -0
 - data/lib/mime/types/cache.rb +54 -0
 - data/lib/mime/types/columnar.rb +3 -0
 - data/lib/mime/types/container.rb +96 -0
 - data/lib/mime/types/deprecations.rb +36 -0
 - data/lib/mime/types/full.rb +19 -0
 - data/lib/mime/types/loader.rb +159 -0
 - data/lib/mime/types/logger.rb +37 -0
 - data/lib/mime/types/registry.rb +90 -0
 - data/lib/mime/types.rb +197 -715
 - data/lib/mime-types.rb +3 -0
 - data/test/bad-fixtures/malformed +9 -0
 - data/test/fixture/json.json +1 -0
 - data/test/fixture/old-data +9 -0
 - data/test/fixture/yaml.yaml +55 -0
 - data/test/minitest_helper.rb +10 -0
 - data/test/test_mime_type.rb +585 -284
 - data/test/test_mime_types.rb +134 -83
 - data/test/test_mime_types_cache.rb +118 -0
 - data/test/test_mime_types_class.rb +164 -0
 - data/test/test_mime_types_lazy.rb +49 -0
 - data/test/test_mime_types_loader.rb +32 -0
 - metadata +295 -110
 - data/History.txt +0 -107
 - data/Install.txt +0 -17
 - data/Licence.txt +0 -15
 - data/README.txt +0 -28
 - data/lib/mime/types.rb.data +0 -1324
 - data/mime-types.gemspec +0 -43
 - data/setup.rb +0 -1585
 - data.tar.gz.sig +0 -2
 - metadata.gz.sig +0 -0
 
    
        metadata
    CHANGED
    
    | 
         @@ -1,130 +1,315 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            --- !ruby/object:Gem::Specification 
     | 
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: mime-types
         
     | 
| 
       3 
     | 
    
         
            -
            version: !ruby/object:Gem::Version 
     | 
| 
       4 
     | 
    
         
            -
              version:  
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 3.5.2
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
     | 
    
         
            -
            authors: 
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Austin Ziegler
         
     | 
| 
       8 
     | 
    
         
            -
            autorequire: 
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
     | 
    
         
            -
            cert_chain: 
         
     | 
| 
       11 
     | 
    
         
            -
            -  
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
               
     | 
| 
       15 
     | 
    
         
            -
               
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
               
     | 
| 
       21 
     | 
    
         
            -
               
     | 
| 
       22 
     | 
    
         
            -
               
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
             
     | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
               
     | 
| 
       29 
     | 
    
         
            -
               
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
       31 
     | 
    
         
            -
             
     | 
| 
       32 
     | 
    
         
            -
             
     | 
| 
       33 
     | 
    
         
            -
             
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
             
     | 
| 
       36 
     | 
    
         
            -
             
     | 
| 
       37 
     | 
    
         
            -
             
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-01-02 00:00:00.000000000 Z
         
     | 
| 
      
 12 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 13 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 14 
     | 
    
         
            +
              name: mime-types-data
         
     | 
| 
      
 15 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 16 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 17 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '3.2015'
         
     | 
| 
      
 20 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 21 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 22 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 23 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 24 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '3.2015'
         
     | 
| 
      
 27 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 28 
     | 
    
         
            +
              name: minitest
         
     | 
| 
      
 29 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: '5.20'
         
     | 
| 
      
 34 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 35 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 36 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 37 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 38 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 39 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 40 
     | 
    
         
            +
                    version: '5.20'
         
     | 
| 
      
 41 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 42 
     | 
    
         
            +
              name: hoe
         
     | 
| 
      
 43 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 44 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 45 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 47 
     | 
    
         
            +
                    version: '3.0'
         
     | 
| 
      
 48 
     | 
    
         
            +
                - - "<"
         
     | 
| 
      
 49 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 50 
     | 
    
         
            +
                    version: '5'
         
     | 
| 
       38 
51 
     | 
    
         
             
              type: :development
         
     | 
| 
       39 
     | 
    
         
            -
               
     | 
| 
       40 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement 
     | 
| 
       41 
     | 
    
         
            -
                requirements: 
     | 
| 
       42 
     | 
    
         
            -
                - -  
     | 
| 
       43 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       44 
     | 
    
         
            -
                    version:  
     | 
| 
       45 
     | 
    
         
            -
                 
     | 
| 
       46 
     | 
    
         
            -
            - !ruby/object:Gem:: 
     | 
| 
       47 
     | 
    
         
            -
             
     | 
| 
      
 52 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 53 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 54 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 55 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 56 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 57 
     | 
    
         
            +
                    version: '3.0'
         
     | 
| 
      
 58 
     | 
    
         
            +
                - - "<"
         
     | 
| 
      
 59 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 60 
     | 
    
         
            +
                    version: '5'
         
     | 
| 
      
 61 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 62 
     | 
    
         
            +
              name: hoe-doofus
         
     | 
| 
      
 63 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 64 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 65 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 66 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 67 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
       48 
68 
     | 
    
         
             
              type: :development
         
     | 
| 
       49 
     | 
    
         
            -
               
     | 
| 
       50 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement 
     | 
| 
       51 
     | 
    
         
            -
                requirements: 
     | 
| 
       52 
     | 
    
         
            -
                - - ~>
         
     | 
| 
       53 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       54 
     | 
    
         
            -
                    version:  
     | 
| 
       55 
     | 
    
         
            -
             
     | 
| 
       56 
     | 
    
         
            -
             
     | 
| 
       57 
     | 
    
         
            -
               
     | 
| 
      
 69 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 70 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 71 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 72 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 73 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 74 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 75 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 76 
     | 
    
         
            +
              name: hoe-gemspec2
         
     | 
| 
      
 77 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 78 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 79 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 80 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 81 
     | 
    
         
            +
                    version: '1.1'
         
     | 
| 
       58 
82 
     | 
    
         
             
              type: :development
         
     | 
| 
       59 
     | 
    
         
            -
               
     | 
| 
       60 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement 
     | 
| 
       61 
     | 
    
         
            -
                requirements: 
     | 
| 
       62 
     | 
    
         
            -
                - - ~>
         
     | 
| 
       63 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       64 
     | 
    
         
            -
                    version:  
     | 
| 
       65 
     | 
    
         
            -
             
     | 
| 
       66 
     | 
    
         
            -
             
     | 
| 
       67 
     | 
    
         
            -
               
     | 
| 
      
 83 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 84 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 85 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 86 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 87 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 88 
     | 
    
         
            +
                    version: '1.1'
         
     | 
| 
      
 89 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 90 
     | 
    
         
            +
              name: hoe-git2
         
     | 
| 
      
 91 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 92 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 93 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 94 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 95 
     | 
    
         
            +
                    version: '1.7'
         
     | 
| 
       68 
96 
     | 
    
         
             
              type: :development
         
     | 
| 
       69 
     | 
    
         
            -
               
     | 
| 
       70 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement 
     | 
| 
       71 
     | 
    
         
            -
                requirements: 
     | 
| 
      
 97 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 98 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 99 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 100 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 101 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 102 
     | 
    
         
            +
                    version: '1.7'
         
     | 
| 
      
 103 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 104 
     | 
    
         
            +
              name: hoe-rubygems
         
     | 
| 
      
 105 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 106 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 107 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 108 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 109 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 110 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 111 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 112 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 113 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 114 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 115 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 116 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 117 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 118 
     | 
    
         
            +
              name: minitest-autotest
         
     | 
| 
      
 119 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 120 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 121 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 122 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 123 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 124 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 125 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 126 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 127 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 128 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 129 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 130 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 131 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 132 
     | 
    
         
            +
              name: minitest-focus
         
     | 
| 
      
 133 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 134 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 135 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 136 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 137 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 138 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 139 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 140 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 141 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 142 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 143 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 144 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 145 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 146 
     | 
    
         
            +
              name: minitest-hooks
         
     | 
| 
      
 147 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 148 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 149 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 150 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 151 
     | 
    
         
            +
                    version: '1.4'
         
     | 
| 
      
 152 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 153 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 154 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 155 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 156 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 157 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 158 
     | 
    
         
            +
                    version: '1.4'
         
     | 
| 
      
 159 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 160 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 161 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 162 
     | 
    
         
            +
                requirements:
         
     | 
| 
       72 
163 
     | 
    
         
             
                - - ">="
         
     | 
| 
       73 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       74 
     | 
    
         
            -
                    version:  
     | 
| 
       75 
     | 
    
         
            -
                 
     | 
| 
       76 
     | 
    
         
            -
             
     | 
| 
       77 
     | 
    
         
            -
             
     | 
| 
       78 
     | 
    
         
            -
             
     | 
| 
       79 
     | 
    
         
            -
             
     | 
| 
      
 164 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 165 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 166 
     | 
    
         
            +
                - - "<"
         
     | 
| 
      
 167 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 168 
     | 
    
         
            +
                    version: '14.0'
         
     | 
| 
      
 169 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 170 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 171 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 172 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 173 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 174 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 175 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 176 
     | 
    
         
            +
                - - "<"
         
     | 
| 
      
 177 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 178 
     | 
    
         
            +
                    version: '14.0'
         
     | 
| 
      
 179 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 180 
     | 
    
         
            +
              name: standard
         
     | 
| 
      
 181 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 182 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 183 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 184 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 185 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 186 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 187 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 188 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 189 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 190 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 191 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 192 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 193 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 194 
     | 
    
         
            +
              name: rdoc
         
     | 
| 
      
 195 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 196 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 197 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 198 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 199 
     | 
    
         
            +
                    version: '4.0'
         
     | 
| 
      
 200 
     | 
    
         
            +
                - - "<"
         
     | 
| 
      
 201 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 202 
     | 
    
         
            +
                    version: '7'
         
     | 
| 
      
 203 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 204 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 205 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 206 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 207 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 208 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 209 
     | 
    
         
            +
                    version: '4.0'
         
     | 
| 
      
 210 
     | 
    
         
            +
                - - "<"
         
     | 
| 
      
 211 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 212 
     | 
    
         
            +
                    version: '7'
         
     | 
| 
      
 213 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 214 
     | 
    
         
            +
              name: simplecov
         
     | 
| 
      
 215 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 216 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 217 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 218 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 219 
     | 
    
         
            +
                    version: '0.21'
         
     | 
| 
      
 220 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 221 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 222 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 223 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 224 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 225 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 226 
     | 
    
         
            +
                    version: '0.21'
         
     | 
| 
      
 227 
     | 
    
         
            +
            description: |-
         
     | 
| 
      
 228 
     | 
    
         
            +
              The mime-types library provides a library and registry for information about
         
     | 
| 
      
 229 
     | 
    
         
            +
              MIME content type definitions. It can be used to determine defined filename
         
     | 
| 
      
 230 
     | 
    
         
            +
              extensions for MIME types, or to use filename extensions to look up the likely
         
     | 
| 
      
 231 
     | 
    
         
            +
              MIME type definitions.
         
     | 
| 
       80 
232 
     | 
    
         | 
| 
      
 233 
     | 
    
         
            +
              Version 3.0 is a major release that requires Ruby 2.0 compatibility and removes
         
     | 
| 
      
 234 
     | 
    
         
            +
              deprecated functions. The columnar registry format introduced in 2.6 has been
         
     | 
| 
      
 235 
     | 
    
         
            +
              made the primary format; the registry data has been extracted from this library
         
     | 
| 
      
 236 
     | 
    
         
            +
              and put into {mime-types-data}[https://github.com/mime-types/mime-types-data].
         
     | 
| 
      
 237 
     | 
    
         
            +
              Additionally, mime-types is now licensed exclusively under the MIT licence and
         
     | 
| 
      
 238 
     | 
    
         
            +
              there is a code of conduct in effect. There are a number of other smaller
         
     | 
| 
      
 239 
     | 
    
         
            +
              changes described in the History file.
         
     | 
| 
      
 240 
     | 
    
         
            +
            email:
         
     | 
| 
      
 241 
     | 
    
         
            +
            - halostatue@gmail.com
         
     | 
| 
      
 242 
     | 
    
         
            +
            executables: []
         
     | 
| 
       81 
243 
     | 
    
         
             
            extensions: []
         
     | 
| 
       82 
     | 
    
         
            -
             
     | 
| 
       83 
     | 
    
         
            -
             
     | 
| 
       84 
     | 
    
         
            -
            -  
     | 
| 
       85 
     | 
    
         
            -
            -  
     | 
| 
       86 
     | 
    
         
            -
            - Licence. 
     | 
| 
       87 
     | 
    
         
            -
            -  
     | 
| 
       88 
     | 
    
         
            -
             
     | 
| 
       89 
     | 
    
         
            -
             
     | 
| 
       90 
     | 
    
         
            -
            -  
     | 
| 
       91 
     | 
    
         
            -
            -  
     | 
| 
      
 244 
     | 
    
         
            +
            extra_rdoc_files:
         
     | 
| 
      
 245 
     | 
    
         
            +
            - Code-of-Conduct.md
         
     | 
| 
      
 246 
     | 
    
         
            +
            - Contributing.md
         
     | 
| 
      
 247 
     | 
    
         
            +
            - History.md
         
     | 
| 
      
 248 
     | 
    
         
            +
            - Licence.md
         
     | 
| 
      
 249 
     | 
    
         
            +
            - Manifest.txt
         
     | 
| 
      
 250 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 251 
     | 
    
         
            +
            files:
         
     | 
| 
      
 252 
     | 
    
         
            +
            - ".standard.yml"
         
     | 
| 
      
 253 
     | 
    
         
            +
            - Code-of-Conduct.md
         
     | 
| 
      
 254 
     | 
    
         
            +
            - Contributing.md
         
     | 
| 
      
 255 
     | 
    
         
            +
            - History.md
         
     | 
| 
      
 256 
     | 
    
         
            +
            - Licence.md
         
     | 
| 
       92 
257 
     | 
    
         
             
            - Manifest.txt
         
     | 
| 
       93 
     | 
    
         
            -
            - README. 
     | 
| 
      
 258 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
       94 
259 
     | 
    
         
             
            - Rakefile
         
     | 
| 
      
 260 
     | 
    
         
            +
            - lib/mime-types.rb
         
     | 
| 
      
 261 
     | 
    
         
            +
            - lib/mime/type.rb
         
     | 
| 
      
 262 
     | 
    
         
            +
            - lib/mime/type/columnar.rb
         
     | 
| 
       95 
263 
     | 
    
         
             
            - lib/mime/types.rb
         
     | 
| 
       96 
     | 
    
         
            -
            - lib/mime/types.rb 
     | 
| 
       97 
     | 
    
         
            -
            - mime 
     | 
| 
       98 
     | 
    
         
            -
            -  
     | 
| 
      
 264 
     | 
    
         
            +
            - lib/mime/types/_columnar.rb
         
     | 
| 
      
 265 
     | 
    
         
            +
            - lib/mime/types/cache.rb
         
     | 
| 
      
 266 
     | 
    
         
            +
            - lib/mime/types/columnar.rb
         
     | 
| 
      
 267 
     | 
    
         
            +
            - lib/mime/types/container.rb
         
     | 
| 
      
 268 
     | 
    
         
            +
            - lib/mime/types/deprecations.rb
         
     | 
| 
      
 269 
     | 
    
         
            +
            - lib/mime/types/full.rb
         
     | 
| 
      
 270 
     | 
    
         
            +
            - lib/mime/types/loader.rb
         
     | 
| 
      
 271 
     | 
    
         
            +
            - lib/mime/types/logger.rb
         
     | 
| 
      
 272 
     | 
    
         
            +
            - lib/mime/types/registry.rb
         
     | 
| 
      
 273 
     | 
    
         
            +
            - test/bad-fixtures/malformed
         
     | 
| 
      
 274 
     | 
    
         
            +
            - test/fixture/json.json
         
     | 
| 
      
 275 
     | 
    
         
            +
            - test/fixture/old-data
         
     | 
| 
      
 276 
     | 
    
         
            +
            - test/fixture/yaml.yaml
         
     | 
| 
      
 277 
     | 
    
         
            +
            - test/minitest_helper.rb
         
     | 
| 
       99 
278 
     | 
    
         
             
            - test/test_mime_type.rb
         
     | 
| 
       100 
279 
     | 
    
         
             
            - test/test_mime_types.rb
         
     | 
| 
       101 
     | 
    
         
            -
             
     | 
| 
       102 
     | 
    
         
            -
             
     | 
| 
       103 
     | 
    
         
            -
             
     | 
| 
       104 
     | 
    
         
            -
             
     | 
| 
       105 
     | 
    
         
            -
            - 
     | 
| 
       106 
     | 
    
         
            -
             
     | 
| 
       107 
     | 
    
         
            -
             
     | 
| 
      
 280 
     | 
    
         
            +
            - test/test_mime_types_cache.rb
         
     | 
| 
      
 281 
     | 
    
         
            +
            - test/test_mime_types_class.rb
         
     | 
| 
      
 282 
     | 
    
         
            +
            - test/test_mime_types_lazy.rb
         
     | 
| 
      
 283 
     | 
    
         
            +
            - test/test_mime_types_loader.rb
         
     | 
| 
      
 284 
     | 
    
         
            +
            homepage: https://github.com/mime-types/ruby-mime-types/
         
     | 
| 
      
 285 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 286 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 287 
     | 
    
         
            +
            metadata:
         
     | 
| 
      
 288 
     | 
    
         
            +
              homepage_uri: https://github.com/mime-types/ruby-mime-types/
         
     | 
| 
      
 289 
     | 
    
         
            +
              source_code_uri: https://github.com/mime-types/ruby-mime-types/
         
     | 
| 
      
 290 
     | 
    
         
            +
              bug_tracker_uri: https://github.com/mime-types/ruby-mime-types/issues
         
     | 
| 
      
 291 
     | 
    
         
            +
              changelog_uri: https://github.com/mime-types/ruby-mime-types/blob/master/History.md
         
     | 
| 
      
 292 
     | 
    
         
            +
              rubygems_mfa_required: 'true'
         
     | 
| 
      
 293 
     | 
    
         
            +
            post_install_message:
         
     | 
| 
      
 294 
     | 
    
         
            +
            rdoc_options:
         
     | 
| 
      
 295 
     | 
    
         
            +
            - "--main"
         
     | 
| 
      
 296 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 297 
     | 
    
         
            +
            require_paths:
         
     | 
| 
       108 
298 
     | 
    
         
             
            - lib
         
     | 
| 
       109 
     | 
    
         
            -
            required_ruby_version: !ruby/object:Gem::Requirement 
     | 
| 
       110 
     | 
    
         
            -
              requirements: 
     | 
| 
      
 299 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 300 
     | 
    
         
            +
              requirements:
         
     | 
| 
       111 
301 
     | 
    
         
             
              - - ">="
         
     | 
| 
       112 
     | 
    
         
            -
                - !ruby/object:Gem::Version 
     | 
| 
       113 
     | 
    
         
            -
                  version:  
     | 
| 
       114 
     | 
    
         
            -
             
     | 
| 
       115 
     | 
    
         
            -
             
     | 
| 
       116 
     | 
    
         
            -
              requirements: 
         
     | 
| 
      
 302 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 303 
     | 
    
         
            +
                  version: '2.0'
         
     | 
| 
      
 304 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 305 
     | 
    
         
            +
              requirements:
         
     | 
| 
       117 
306 
     | 
    
         
             
              - - ">="
         
     | 
| 
       118 
     | 
    
         
            -
                - !ruby/object:Gem::Version 
     | 
| 
       119 
     | 
    
         
            -
                  version:  
     | 
| 
       120 
     | 
    
         
            -
              version: 
         
     | 
| 
      
 307 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 308 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
       121 
309 
     | 
    
         
             
            requirements: []
         
     | 
| 
       122 
     | 
    
         
            -
             
     | 
| 
       123 
     | 
    
         
            -
             
     | 
| 
       124 
     | 
    
         
            -
             
     | 
| 
       125 
     | 
    
         
            -
             
     | 
| 
       126 
     | 
    
         
            -
             
     | 
| 
       127 
     | 
    
         
            -
             
     | 
| 
       128 
     | 
    
         
            -
            test_files: 
         
     | 
| 
       129 
     | 
    
         
            -
            - test/test_mime_type.rb
         
     | 
| 
       130 
     | 
    
         
            -
            - test/test_mime_types.rb
         
     | 
| 
      
 310 
     | 
    
         
            +
            rubygems_version: 3.5.3
         
     | 
| 
      
 311 
     | 
    
         
            +
            signing_key:
         
     | 
| 
      
 312 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 313 
     | 
    
         
            +
            summary: The mime-types library provides a library and registry for information about
         
     | 
| 
      
 314 
     | 
    
         
            +
              MIME content type definitions
         
     | 
| 
      
 315 
     | 
    
         
            +
            test_files: []
         
     | 
    
        data/History.txt
    DELETED
    
    | 
         @@ -1,107 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            == MIME::Types 1.16
         
     | 
| 
       2 
     | 
    
         
            -
            * Made compatible with Ruby 1.8.6, 1.8.7, and 1.9.1.
         
     | 
| 
       3 
     | 
    
         
            -
            * Switched to the 'hoe' gem system and added a lot of build-time tools.
         
     | 
| 
       4 
     | 
    
         
            -
            * Updated the MIME types to the list based on the values in the Perl library
         
     | 
| 
       5 
     | 
    
         
            -
              version 1.27. Also updated based on external source information and bug
         
     | 
| 
       6 
     | 
    
         
            -
              reports.
         
     | 
| 
       7 
     | 
    
         
            -
            * This is the last planned version of MIME::Types 1.x. Work will be
         
     | 
| 
       8 
     | 
    
         
            -
              starting soon on MIME::Types 2.x with richer data querying mechanisms
         
     | 
| 
       9 
     | 
    
         
            -
              and support for external data sources.
         
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
            == MIME::Types 1.15
         
     | 
| 
       12 
     | 
    
         
            -
            * Removed lib/mime/type.rb to form a single MIME::Types database source. It
         
     | 
| 
       13 
     | 
    
         
            -
              is unlikely that one will ever need MIME::Type without MIME::Types.
         
     | 
| 
       14 
     | 
    
         
            -
            * Re-synchronized the MIME type list with the sources, focusing primarily on
         
     | 
| 
       15 
     | 
    
         
            -
              the IANA list.
         
     | 
| 
       16 
     | 
    
         
            -
            * Added more detailed source information for MIME::Type objects.
         
     | 
| 
       17 
     | 
    
         
            -
            * Changed MIME::Types from a module to a class with a default instance. There
         
     | 
| 
       18 
     | 
    
         
            -
              should be no difference in usage.
         
     | 
| 
       19 
     | 
    
         
            -
            * Removed MIME::Types::DATA_VERSION; it is now an attribute on the
         
     | 
| 
       20 
     | 
    
         
            -
              MIME::Types instance.
         
     | 
| 
       21 
     | 
    
         
            -
            * NOTE: Synchronization with the Perl version of MIME::Types is no longer a
         
     | 
| 
       22 
     | 
    
         
            -
              priority as of this release. The data format and information has changed.
         
     | 
| 
       23 
     | 
    
         
            -
            * Removed MIME::Types.by_suffix and MIME::Types.by_mediatype.
         
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
       25 
     | 
    
         
            -
            == MIME::Types 1.13.1
         
     | 
| 
       26 
     | 
    
         
            -
            * Fixed a problem with the installer running tests. This now works.
         
     | 
| 
       27 
     | 
    
         
            -
            * Improved the implementation of MIME::Type.signature?
         
     | 
| 
       28 
     | 
    
         
            -
            * Moved code around to use the class << self idiom instead of always
         
     | 
| 
       29 
     | 
    
         
            -
              prepending the module/class name.
         
     | 
| 
       30 
     | 
    
         
            -
            * Added two new best-guess implementations of functions found in Perl's
         
     | 
| 
       31 
     | 
    
         
            -
              MIME::Types implementation (1.13). Do not rely on these until the purpose
         
     | 
| 
       32 
     | 
    
         
            -
              and implementation is stabilised.
         
     | 
| 
       33 
     | 
    
         
            -
            * Updated the MIME list to reflect changes noted by 
         
     | 
| 
       34 
     | 
    
         
            -
              Ville Skyttä <ville.skytta@iki.fi>.
         
     | 
| 
       35 
     | 
    
         
            -
            * Added a new constant to MIME::Types, DATA_VERSION. This will allow the Ruby
         
     | 
| 
       36 
     | 
    
         
            -
              version number to be updated separately from the Perl version while keeping
         
     | 
| 
       37 
     | 
    
         
            -
              the MIME Type list version in sync.
         
     | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       39 
     | 
    
         
            -
            == MIME::Types 1.13
         
     | 
| 
       40 
     | 
    
         
            -
              ! WARNING: This version changes the API of MIME::Types !
         
     | 
| 
       41 
     | 
    
         
            -
              ! WARNING: This version is compatible with Ruby 1.8 and higher ONLY !
         
     | 
| 
       42 
     | 
    
         
            -
            * Removed dependency on InstallPackage; offering 1.13 as either .tar.gz or
         
     | 
| 
       43 
     | 
    
         
            -
              .gem.
         
     | 
| 
       44 
     | 
    
         
            -
            * Split into two files, mime/type.rb and mime/types.rb. This will make
         
     | 
| 
       45 
     | 
    
         
            -
              maintaining the list of changes easier.
         
     | 
| 
       46 
     | 
    
         
            -
            * Changed the MIME::Type construction API. Accepts only a single String
         
     | 
| 
       47 
     | 
    
         
            -
              argument (but does no named type-checking) and yields self.
         
     | 
| 
       48 
     | 
    
         
            -
            * Removed private methods #init_extensions, #init_encoding, and #init_system
         
     | 
| 
       49 
     | 
    
         
            -
              and replaced with #extensions=, #encoding=, and #system=.
         
     | 
| 
       50 
     | 
    
         
            -
            * Added #default_encoding to return 'quoted-printable' or 'base64' depending
         
     | 
| 
       51 
     | 
    
         
            -
              on the media type of the MIME type.
         
     | 
| 
       52 
     | 
    
         
            -
            * Added #raw_media_type and #raw_sub_type to provide the non-simplified
         
     | 
| 
       53 
     | 
    
         
            -
              versions of the media type and subtype.
         
     | 
| 
       54 
     | 
    
         
            -
            * Alternative constructors MIME::Type.from_array, MIME::Type.from_hash, and
         
     | 
| 
       55 
     | 
    
         
            -
              MIME::Type.from_mime_type added to compensate for the removal of named type
         
     | 
| 
       56 
     | 
    
         
            -
              checking in the original constructor.
         
     | 
| 
       57 
     | 
    
         
            -
            * Added #to_str, #to_a, and #to_hash methods. The latter two will provide
         
     | 
| 
       58 
     | 
    
         
            -
              output suitable for use in #from_array and #from_hash.
         
     | 
| 
       59 
     | 
    
         
            -
            * Removed "binary" encoding and enforced the use of a valid encoding string.
         
     | 
| 
       60 
     | 
    
         
            -
            * Added #system? returning true if the MIME::Type is an OS-specific
         
     | 
| 
       61 
     | 
    
         
            -
              MIME::Type.
         
     | 
| 
       62 
     | 
    
         
            -
            * Added #platform? returning true if the MIME::Type is an OS-specific
         
     | 
| 
       63 
     | 
    
         
            -
              MIME::Type for the current RUBY_PLATFORM.
         
     | 
| 
       64 
     | 
    
         
            -
            * Added #like? returning true if the simplified type matches the other value
         
     | 
| 
       65 
     | 
    
         
            -
              provided. #<'application/x-excel'>.like?('application/excel') is true.
         
     | 
| 
       66 
     | 
    
         
            -
            * Added #complete? returning true if the MIME::Type specifies an extension
         
     | 
| 
       67 
     | 
    
         
            -
              list.
         
     | 
| 
       68 
     | 
    
         
            -
            * Updated the MIME type list to reflect additions by Mark Overmeer for Perl's
         
     | 
| 
       69 
     | 
    
         
            -
              MIME::Types 1.12 and the official IANA list as of 2004.04.06. A number of
         
     | 
| 
       70 
     | 
    
         
            -
              formerly "registered" MIME types are now no longer registered (e.g.,
         
     | 
| 
       71 
     | 
    
         
            -
              application/excel is now application/x-excel). This ensures that the
         
     | 
| 
       72 
     | 
    
         
            -
              simplified type still works with applications, but does not report an
         
     | 
| 
       73 
     | 
    
         
            -
              unregistered type as registered.
         
     | 
| 
       74 
     | 
    
         
            -
            * Restored MIME type list to Mark Overmeer's format to facilitate easy
         
     | 
| 
       75 
     | 
    
         
            -
              exchange between the two projects.
         
     | 
| 
       76 
     | 
    
         
            -
            * Added additional unit tests from Mark Overmeer's 1.12 version.
         
     | 
| 
       77 
     | 
    
         
            -
             
     | 
| 
       78 
     | 
    
         
            -
            == MIME::Types 1.07
         
     | 
| 
       79 
     | 
    
         
            -
            * Changed version numbering to match Perl MIME::Types 1.07.
         
     | 
| 
       80 
     | 
    
         
            -
            * Re-synchronized with Mark Overmeer's list in Perl PMIME::Types 1.07.
         
     | 
| 
       81 
     | 
    
         
            -
            * [NN Poster] updated the attributes for the PGP types.
         
     | 
| 
       82 
     | 
    
         
            -
             
     | 
| 
       83 
     | 
    
         
            -
            == MIME::Types 1.005
         
     | 
| 
       84 
     | 
    
         
            -
            * Changed to Phil Thomson's InstallPackage.
         
     | 
| 
       85 
     | 
    
         
            -
            * Added several types from Perl MIME::Types 1.005.
         
     | 
| 
       86 
     | 
    
         
            -
            * Cleaned up data format; some data formats will show up with proper data now.
         
     | 
| 
       87 
     | 
    
         
            -
             
     | 
| 
       88 
     | 
    
         
            -
            == MIME::Types 1.004
         
     | 
| 
       89 
     | 
    
         
            -
            * Updated to match Perl MIME::Types 1.004, links credited to Dan Puro. Adds
         
     | 
| 
       90 
     | 
    
         
            -
              new reference list to http://www.indiana.edu/cgi-bin-local/mimetypes
         
     | 
| 
       91 
     | 
    
         
            -
            * Removed InvalidType and replaced with TypeError.
         
     | 
| 
       92 
     | 
    
         
            -
            * Changed instances of #type to #class.
         
     | 
| 
       93 
     | 
    
         
            -
            * Cleaned up how simplified versions are created.
         
     | 
| 
       94 
     | 
    
         
            -
             
     | 
| 
       95 
     | 
    
         
            -
            == MIME::Types 1.003
         
     | 
| 
       96 
     | 
    
         
            -
            * Initial release based on Perl MIME::Types 1.003.
         
     | 
| 
       97 
     | 
    
         
            -
             
     | 
| 
       98 
     | 
    
         
            -
            == Copyright
         
     | 
| 
       99 
     | 
    
         
            -
              MIME::Types
         
     | 
| 
       100 
     | 
    
         
            -
              A Ruby implementation of a MIME Types information library. Based in spirit
         
     | 
| 
       101 
     | 
    
         
            -
              on the Perl MIME::Types information library by Mark Overmeer.
         
     | 
| 
       102 
     | 
    
         
            -
              http://rubyforge.org/projects/mime-types/
         
     | 
| 
       103 
     | 
    
         
            -
             
     | 
| 
       104 
     | 
    
         
            -
              Licensed under the Ruby disjunctive licence with the GNU GPL or the Perl
         
     | 
| 
       105 
     | 
    
         
            -
              Artistic licence. See Licence.txt for more information.
         
     | 
| 
       106 
     | 
    
         
            -
             
     | 
| 
       107 
     | 
    
         
            -
              Copyright 2003 - 2009 Austin Ziegler
         
     | 
    
        data/Install.txt
    DELETED
    
    | 
         @@ -1,17 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            Installing this package is as simple as:
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
              % ruby setup.rb
         
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
            Alternatively, you can use the Gem version of MIME::Types available as
         
     | 
| 
       6 
     | 
    
         
            -
            mime-types-1.16.gem from the usual sources.
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
            == Copyright
         
     | 
| 
       9 
     | 
    
         
            -
              MIME::Types
         
     | 
| 
       10 
     | 
    
         
            -
              A Ruby implementation of a MIME Types information library. Based in spirit
         
     | 
| 
       11 
     | 
    
         
            -
              on the Perl MIME::Types information library by Mark Overmeer.
         
     | 
| 
       12 
     | 
    
         
            -
              http://rubyforge.org/projects/mime-types/
         
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
              Licensed under the Ruby disjunctive licence with the GNU GPL or the Perl
         
     | 
| 
       15 
     | 
    
         
            -
              Artistic licence. See Licence.txt for more information.
         
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
              Copyright 2003 - 2009 Austin Ziegler
         
     | 
    
        data/Licence.txt
    DELETED
    
    | 
         @@ -1,15 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            = MIME::Types for Ruby
         
     | 
| 
       2 
     | 
    
         
            -
            Homepage::  http://rubyforge.org/projects/mime-types/
         
     | 
| 
       3 
     | 
    
         
            -
            Copyright:: Copyright (c) 2003 - 2006 Austin Ziegler.
         
     | 
| 
       4 
     | 
    
         
            -
            Summary::   Ruby's licence, Perl Aristic Licence,
         
     | 
| 
       5 
     | 
    
         
            -
                        GNU GPL version 2 (or later)
         
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
            The text of the Ruby licence can be found at:
         
     | 
| 
       8 
     | 
    
         
            -
            http://www.ruby-lang.org/en/LICENSE.txt
         
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
            The text of the Perl Artistic Licence can be found at:
         
     | 
| 
       11 
     | 
    
         
            -
            http://www.perl.com/pub/a/language/misc/Artistic.html
         
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
            The text of the GNU GPL can be found at: http://www.gnu.org/copyleft/gpl.html
         
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
            If you do not accept one of these licences, you may not use this software.
         
     | 
    
        data/README.txt
    DELETED
    
    | 
         @@ -1,28 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            = README: Mime::Types for Ruby
         
     | 
| 
       2 
     | 
    
         
            -
            This library allows for the identification of a file's likely MIME content
         
     | 
| 
       3 
     | 
    
         
            -
            type. This is release 1.16. The identification of MIME content type is based
         
     | 
| 
       4 
     | 
    
         
            -
            on a file's filename extensions.
         
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
            MIME::Types for Ruby originally based on and synchronized with MIME::Types
         
     | 
| 
       7 
     | 
    
         
            -
            for Perl by Mark Overmeer, copyright 2001 - 2009. As of version 1.15, the
         
     | 
| 
       8 
     | 
    
         
            -
            data format for the MIME::Type list has changed and the synchronization will
         
     | 
| 
       9 
     | 
    
         
            -
            no longer happen.
         
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
            Homepage::  http://mime-types.rubyforge.org/
         
     | 
| 
       12 
     | 
    
         
            -
            Copyright:: 2002 - 2009, Austin Ziegler
         
     | 
| 
       13 
     | 
    
         
            -
                        Based in part on prior work copyright Mark Overmeer
         
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
            == Licensing
         
     | 
| 
       16 
     | 
    
         
            -
            MIME::Types is available under three disjunctive licences, as detailed in the
         
     | 
| 
       17 
     | 
    
         
            -
            Licence.txt file.
         
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
            == Copyright
         
     | 
| 
       20 
     | 
    
         
            -
              MIME::Types
         
     | 
| 
       21 
     | 
    
         
            -
              A Ruby implementation of a MIME Types information library. Based in spirit
         
     | 
| 
       22 
     | 
    
         
            -
              on the Perl MIME::Types information library by Mark Overmeer.
         
     | 
| 
       23 
     | 
    
         
            -
              http://rubyforge.org/projects/mime-types/
         
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
       25 
     | 
    
         
            -
              Licensed under the Ruby disjunctive licence with the GNU GPL or the Perl
         
     | 
| 
       26 
     | 
    
         
            -
              Artistic licence. See Licence.txt for more information.
         
     | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
              Copyright 2003 - 2009 Austin Ziegler
         
     |