mime-types 2.99.3 → 3.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +5 -5
  2. data/{Code-of-Conduct.rdoc → Code-of-Conduct.md} +19 -20
  3. data/Contributing.md +139 -0
  4. data/History.md +208 -0
  5. data/{Licence.rdoc → Licence.md} +4 -18
  6. data/Manifest.txt +8 -25
  7. data/README.rdoc +63 -67
  8. data/Rakefile +144 -55
  9. data/lib/mime/type/columnar.rb +29 -62
  10. data/lib/mime/type.rb +192 -417
  11. data/lib/mime/types/_columnar.rb +137 -0
  12. data/lib/mime/types/cache.rb +51 -73
  13. data/lib/mime/types/columnar.rb +2 -147
  14. data/lib/mime/types/container.rb +94 -0
  15. data/lib/mime/types/deprecations.rb +5 -24
  16. data/lib/mime/types/full.rb +19 -0
  17. data/lib/mime/types/loader.rb +12 -141
  18. data/lib/mime/types/logger.rb +4 -0
  19. data/lib/mime/types/registry.rb +90 -0
  20. data/lib/mime/types.rb +43 -139
  21. data/lib/mime-types.rb +1 -1
  22. data/test/minitest_helper.rb +6 -12
  23. data/test/test_mime_type.rb +473 -455
  24. data/test/test_mime_types.rb +136 -86
  25. data/test/test_mime_types_cache.rb +83 -53
  26. data/test/test_mime_types_class.rb +119 -97
  27. data/test/test_mime_types_lazy.rb +27 -23
  28. data/test/test_mime_types_loader.rb +7 -32
  29. metadata +102 -62
  30. data/Contributing.rdoc +0 -170
  31. data/History-Types.rdoc +0 -454
  32. data/History.rdoc +0 -590
  33. data/data/mime-types.json +0 -1
  34. data/data/mime.content_type.column +0 -1980
  35. data/data/mime.docs.column +0 -1980
  36. data/data/mime.encoding.column +0 -1980
  37. data/data/mime.friendly.column +0 -1980
  38. data/data/mime.obsolete.column +0 -1980
  39. data/data/mime.registered.column +0 -1980
  40. data/data/mime.signature.column +0 -1980
  41. data/data/mime.use_instead.column +0 -1980
  42. data/data/mime.xrefs.column +0 -1980
  43. data/docs/COPYING.txt +0 -339
  44. data/docs/artistic.txt +0 -127
  45. data/lib/mime/types/loader_path.rb +0 -15
  46. data/support/apache_mime_types.rb +0 -108
  47. data/support/benchmarks/load.rb +0 -64
  48. data/support/benchmarks/load_allocations.rb +0 -83
  49. data/support/benchmarks/object_counts.rb +0 -41
  50. data/support/convert/columnar.rb +0 -88
  51. data/support/convert.rb +0 -158
  52. data/support/iana_registry.rb +0 -172
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 6fc8f9668b867116a596617ef0c7a3deb6525d4f
4
- data.tar.gz: da57ee98722d4b5cee6ae754df620202a3d4a7db
2
+ SHA256:
3
+ metadata.gz: 4341a1bdee1841367197d0f06ed6fcda8ee1fc3cd4347c6aa949fe942f247d2c
4
+ data.tar.gz: a7dd6d594e0029c2e6e4d8d342c3b8a46b94d05f2281cd30218a31fcbec8ec04
5
5
  SHA512:
6
- metadata.gz: a82b94ceb52e642b263c8223a55c213220125a576d5abeaa5a72c2ad7941d967921bfc13385a300d4c02f45228d9f9f4fccb9999da6dd16ea29cf5fe8388a3a0
7
- data.tar.gz: c5411c2e67a87c342cde930311d3c3df806e2699f5e27bccd72df1c8ab4095bb81db256b787e354ab13e8ec953b8b8b3aa41b3891a6f749aa0a579419d1a133a
6
+ metadata.gz: 143d9bcc08f707d6e4cef9cee51d94581183ac6264180b261939215311368606fed8168832e96c7908f1926409c4d50c9a7d8216009070dda473aeb20465ba3e
7
+ data.tar.gz: 6e14198fc2b2c67c6b4f1e71d2f1f0442050ddec22f1be28533290badc01a7d3e8d5bc3e476f0af95c31c260171172d5bc777adee5fa30d2bb4838c2cc078d43
@@ -1,15 +1,15 @@
1
- == Contributor Covenant Code of Conduct
1
+ # Contributor Covenant Code of Conduct
2
2
 
3
3
  ## Our Pledge
4
4
 
5
5
  In the interest of fostering an open and welcoming environment, we as
6
6
  contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age,
8
- body size, disability, ethnicity, gender identity and expression, level of
9
- experience, nationality, personal appearance, race, religion, or sexual
10
- identity and orientation.
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, sex characteristics, gender identity and expression,
9
+ level of experience, education, socio-economic status, nationality, personal
10
+ appearance, race, religion, or sexual identity and orientation.
11
11
 
12
- === Our Standards
12
+ ## Our Standards
13
13
 
14
14
  Examples of behavior that contributes to creating a positive environment
15
15
  include:
@@ -31,7 +31,7 @@ Examples of unacceptable behavior by participants include:
31
31
  * Other conduct which could reasonably be considered inappropriate in a
32
32
  professional setting
33
33
 
34
- === Our Responsibilities
34
+ ## Our Responsibilities
35
35
 
36
36
  Project maintainers are responsible for clarifying the standards of acceptable
37
37
  behavior and are expected to take appropriate and fair corrective action in
@@ -43,32 +43,31 @@ that are not aligned to this Code of Conduct, or to ban temporarily or
43
43
  permanently any contributor for other behaviors that they deem inappropriate,
44
44
  threatening, offensive, or harmful.
45
45
 
46
- === Scope
46
+ ## Scope
47
47
 
48
48
  This Code of Conduct applies both within project spaces and in public spaces
49
49
  when an individual is representing the project or its community. Examples of
50
50
  representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an
52
- appointed representative at an online or offline event. Representation of a
53
- project may be further defined and clarified by project maintainers.
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
54
 
55
- === Enforcement
55
+ ## Enforcement
56
56
 
57
57
  Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
58
  reported by contacting the project team at [INSERT EMAIL ADDRESS]. All
59
59
  complaints will be reviewed and investigated and will result in a response that
60
60
  is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an
62
- incident. Further details of specific enforcement policies may be posted
63
- separately.
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
64
63
 
65
64
  Project maintainers who do not follow or enforce the Code of Conduct in good
66
65
  faith may face temporary or permanent repercussions as determined by other
67
66
  members of the project's leadership.
68
67
 
69
- === Attribution
68
+ ## Attribution
70
69
 
71
- This Code of Conduct is adapted from the {Contributor
72
- Covenant}[http://contributor-covenant.org], version 1.4,
73
- available at
74
- {http://contributor-covenant.org/version/1/4/}[http://contributor-covenant.org/version/1/4/].
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72
+
73
+ [homepage]: https://www.contributor-covenant.org
data/Contributing.md ADDED
@@ -0,0 +1,139 @@
1
+ ## Contributing
2
+
3
+ I value any contribution to mime-types you can provide: a bug report, a feature
4
+ request, or code contributions.
5
+
6
+ There are a few guidelines for contributing to mime-types:
7
+
8
+ * Code changes *will* *not* be accepted without tests. The test suite is
9
+ written with [minitest][].
10
+ * Match my coding style.
11
+ * Use a thoughtfully-named topic branch that contains your change. Rebase your
12
+ commits into logical chunks as necessary.
13
+ * Use [quality commit messages][].
14
+ * Do not change the version number; when your patch is accepted and a release
15
+ is made, the version will be updated at that point.
16
+ * Submit a GitHub pull request with your changes.
17
+ * New or changed behaviours require new or updated documentation.
18
+
19
+ ### Adding or Modifying MIME Types
20
+
21
+ The mime-types registry is no longer contained in mime-types, but in
22
+ [mime-types-data][]. Please see that project for contributions there.
23
+
24
+ ### Test Dependencies
25
+
26
+ mime-types uses Ryan Davis’s [Hoe][] to manage the release process, and it adds
27
+ a number of rake tasks. You will mostly be interested in:
28
+
29
+ $ rake
30
+
31
+ which runs the tests the same way that:
32
+
33
+ $ rake test
34
+ $ rake travis
35
+
36
+ will do.
37
+
38
+ To assist with the installation of the development dependencies for mime-types,
39
+ I have provided the simplest possible Gemfile pointing to the (generated)
40
+ `mime-types.gemspec` file. This will permit you to do:
41
+
42
+ $ bundle install
43
+
44
+ to get the development dependencies. If you aleady have +hoe+ installed, you
45
+ can accomplish the same thing with:
46
+
47
+ $ rake newb
48
+
49
+ This task will install any missing dependencies, run the tests/specs, and
50
+ generate the RDoc.
51
+
52
+ You can run tests with code coverage analysis by running:
53
+
54
+ $ rake test:coverage
55
+
56
+ ### Benchmarks
57
+
58
+ mime-types offers several benchmark tasks to measure different measures of
59
+ performance.
60
+
61
+ There is a repeated load test, measuring how long it takes to start and load
62
+ mime-types with its full registry. By default, it runs fifty loops and uses the
63
+ built-in benchmark library.
64
+
65
+ $ rake benchmark:load
66
+
67
+ There are two allocation tracing benchmarks (for normal and columnar loads).
68
+ These can only be run on Ruby 2.1 or better and requires the
69
+ [allocation\_tracer][] gem (not installed by default).
70
+
71
+ $ rake benchmark:allocations
72
+ $ rake benchmark:allocations:columnar
73
+
74
+ There are two loaded object count benchmarks (for normal and columnar loads).
75
+ These use `ObjectSpace.count_objects`.
76
+
77
+ $ rake benchmark:objects
78
+ $ rake benchmark:objects:columnar
79
+
80
+ ### Workflow
81
+
82
+ Here's the most direct way to get your work merged into the project:
83
+
84
+ * Fork the project.
85
+ * Clone down your fork (`git clone git://github.com/<username>/ruby-mime-types.git`).
86
+ * Create a topic branch to contain your change (`git checkout -b my_awesome_feature`).
87
+ * Hack away, add tests. Not necessarily in that order.
88
+ * Make sure everything still passes by running `rake`.
89
+ * If necessary, rebase your commits into logical chunks, without errors.
90
+ * Push the branch up (`git push origin my_awesome_feature`).
91
+ * Create a pull request against mime-types/ruby-mime-types and describe what
92
+ your change does and the why you think it should be merged.
93
+
94
+ ### Contributors
95
+
96
+ * Austin Ziegler created mime-types.
97
+
98
+ Thanks to everyone else who has contributed to mime-types over the years:
99
+
100
+ * Aaron Patterson
101
+ * Aggelos Avgerinos
102
+ * Andre Pankratz
103
+ * Andy Brody
104
+ * Arnaud Meuret
105
+ * Brandon Galbraith
106
+ * Burke Libbey
107
+ * Chris Gat
108
+ * David Genord
109
+ * Dillon Welch
110
+ * Eric Marden
111
+ * Edward Betts
112
+ * Garret Alfert
113
+ * Godfrey Chan
114
+ * Greg Brockman
115
+ * Hans de Graaff
116
+ * Henrik Hodne
117
+ * Janko Marohnić
118
+ * Jeremy Evans
119
+ * Juanito Fatas
120
+ * Jun Aruga
121
+ * Łukasz Śliwa
122
+ * Keerthi Siva
123
+ * Ken Ip
124
+ * Martin d'Allens
125
+ * Mauricio Linhares
126
+ * Nicolas Leger
127
+ * nycvotes-dev
128
+ * Postmodern
129
+ * Richard Hirner
130
+ * Richard Hurt
131
+ * Richard Schneeman
132
+ * Tibor Szolár
133
+ * Todd Carrico
134
+
135
+ [minitest]: https://github.com/seattlerb/minitest
136
+ [quality commit messages]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
137
+ [mime-types-data]: https://github.com/mime-types/mime-types-data
138
+ [Hoe]: https://github.com/seattlerb/hoe
139
+ [allocation\_tracer]: https://github.com/ko1/allocation_tracer
data/History.md ADDED
@@ -0,0 +1,208 @@
1
+ ## 3.2.2 / 2018-08-12
2
+
3
+ * Hiroto Fukui removed a stray `debugger` statement that I had used in
4
+ producing v3.2.1. [#137][]
5
+
6
+ ## 3.2.1 / 2018-08-12
7
+
8
+ * A few bugs related to MIME::Types::Container and its use in the
9
+ mime-types-data helper tools reared their head because I released 3.2
10
+ before verifying against mime-types-data.
11
+
12
+ ## 3.2 / 2018-08-12
13
+
14
+ * 2 minor enhancements
15
+
16
+ * Janko Marohnić contributed a change to `MIME::Type#priority_order` that
17
+ should improve on strict sorting when dealing with MIME types that
18
+ appear to be in the same family even if strict sorting would cause an
19
+ unregistered type to be sorted first. [#132][]
20
+
21
+ * Dillon Welch contributed a change that added `frozen_string_literal:
22
+ true` to files so that modern Rubies can automatically reduce duplicate
23
+ string allocations. [#135][]
24
+
25
+ * 2 bug fixes
26
+
27
+ * Burke Libbey fixed a problem with cached data loading. [#126][]
28
+
29
+ * Resolved an issue where Enumerable#inject returns +nil+ when provided
30
+ an empty enumerable and a default value has not been provided. This is
31
+ because when Enumerable#inject isn't provided a starting value, the
32
+ first value is used as the default value. In every case where this
33
+ error was happening, the result was supposed to be an array containing
34
+ Set objects so they can be reduced to a single Set. [#117][], [#127][],
35
+ [#134][].
36
+
37
+ * Fixed an uncontrolled growth bug in MIME::Types::Container where a key
38
+ miss would create a new entry with an empty Set in the container. This
39
+ was working as designed (this particular feature was heavily used
40
+ during MIME::Type registry construction), but the design was flawed in
41
+ that it did not have any way of determining the difference between
42
+ construction and querying. This would mean that, if you have a function
43
+ in your web app that queries the MIME::Types registry by extension, the
44
+ extension registry would grow uncontrollably. [#136][]
45
+
46
+ * Deprecations:
47
+
48
+ * Lazy loading (`$RUBY_MIME_TYPES_LAZY_LOAD`) has been deprecated.
49
+
50
+ * Documentation Changes:
51
+
52
+ * Supporting files are now Markdown instead of rdoc, except for the
53
+ README.
54
+
55
+ * The history file has been modified to remove all history prior to 3.0.
56
+ This history can be found in previous commits.
57
+
58
+ * A spelling error was corrected by Edward Betts ([#129][]).
59
+
60
+ * Administrivia:
61
+
62
+ * CI configuration for more modern versions of Ruby were added by Nicolas
63
+ Leger ([#130][]), Jun Aruga ([#125][]), and Austin Ziegler. Removed
64
+ ruby-head-clang and rbx (Rubinius) from CI.
65
+
66
+ * Fixed tests which were asserting equality against nil, which will
67
+ become an error in Minitest 6.
68
+
69
+ ## 3.1 / 2016-05-22
70
+
71
+ * 1 documentation change:
72
+
73
+ * Tim Smith (@tas50) updated the build badges to be SVGs to improve
74
+ readability on high-density (retina) screens with pull request
75
+ [#112][].
76
+
77
+ * 3 bug fixes
78
+
79
+ * A test for `MIME::Types::Cache` fails under Ruby 2.3 because of frozen
80
+ strings, [#118][]. This has been fixed.
81
+
82
+ * The JSON data has been incorrectly encoded since the release of
83
+ mime-types 3 on the `xrefs` field, because of the switch to using a Set
84
+ to store cross-reference information. This has been fixed.
85
+
86
+ * A tentative fix for [#117][] has been applied, removing the only
87
+ circular require dependencies that exist (and for which there was code
88
+ to prevent, but the current fix is simpler). I have no way to verify
89
+ this fix and depending on how things are loaded by `delayed_job`, this
90
+ fix may not be sufficient.
91
+
92
+ * 1 governance change
93
+
94
+ * Updated to Contributor Covenant 1.4.
95
+
96
+ ## 3.0 / 2015-11-21
97
+
98
+ * 2 governance changes
99
+
100
+ * This project and the related mime-types-data project are now
101
+ exclusively MIT licensed. Resolves [#95][].
102
+
103
+ * All projects under the mime-types organization now have a standard code
104
+ of conduct adapted from the [Contributor Covenant][]. This text can be
105
+ found in the [Code-of-Conduct.md][] file.
106
+
107
+ * 3 major changes
108
+
109
+ * All methods deprecated in mime-types 2.x have been removed.
110
+
111
+ * mime-types now requires Ruby 2.0 compatibility or later. Resolves
112
+ [#97][].
113
+
114
+ * The registry data has been removed from mime-types and put into
115
+ mime-types-data, maintained and released separately. It can be found at
116
+ [mime-types-data][].
117
+
118
+ * 17 minor changes:
119
+
120
+ * `MIME::Type` changes:
121
+
122
+ * Changed the way that simplified types representations are created
123
+ to reflect the fact that `x-` prefixes are no longer considered
124
+ special according to IANA. A simplified MIME type is case-folded to
125
+ lowercase. A new keyword parameter, `remove_x_prefix`, can be
126
+ provided to remove `x-` prefixes.
127
+
128
+ * Improved initialization with an Array works so that extensions do
129
+ not need to be wrapped in another array. This means that
130
+ `%w(text/yaml yaml yml)` works in the same way that
131
+ `['text/yaml', %w(yaml yml)]` did (and still does).
132
+
133
+ * Changed `priority_compare` to conform with attributes that no
134
+ longer exist.
135
+
136
+ * Changed the internal implementation of extensions to use a frozen
137
+ Set.
138
+
139
+ * When extensions are set or modified with `add_extensions`, the
140
+ primary registry will be informed of a need to reindex extensions.
141
+ Resolves [#84][].
142
+
143
+ * The preferred extension can be set explicitly. If not set, it will
144
+ be the first extension. If the preferred extension is not in the
145
+ extension list, it will be added.
146
+
147
+ * Improved how xref URLs are generated.
148
+
149
+ * Converted `obsolete`, `registered` and `signature` to
150
+ `attr_accessors`.
151
+
152
+ * `MIME::Types` changes:
153
+
154
+ * Modified `MIME::Types.new` to track instances of `MIME::Types` so
155
+ that they can be told to reindex the extensions as necessary.
156
+
157
+ * Removed `data_version` attribute.
158
+
159
+ * Changed `#[]` so that the `complete` and `registered` flags are
160
+ keywords instead of a generic options parameter.
161
+
162
+ * Extracted the class methods to a separate file.
163
+
164
+ * Changed the container implementation to use a Set instead of an
165
+ Array to prevent data duplication. Resolves [#79][].
166
+
167
+ * `MIME::Types::Cache` changes:
168
+
169
+ * Caching is now based on the data gem version instead of the
170
+ mime-types version.
171
+
172
+ * Caching is compatible with columnar registry stores.
173
+
174
+ * `MIME::Types::Loader` changes:
175
+
176
+ * `MIME::Types::Loader::PATH` has been removed and replaced with
177
+ `MIME::Types::Data::PATH` from the mime-types-data gem. The
178
+ environment variable `RUBY_MIME_TYPES_DATA` is still used.
179
+
180
+ * Support for the long-deprecated mime-types v1 format has been
181
+ removed.
182
+
183
+ * The registry is default loaded from the columnar store by default.
184
+ The internal format of the columnar store has changed; many of the
185
+ boolean flags are now loaded from a single file. Resolves [#85][].
186
+
187
+ [#79]: https://github.com/mime-types/ruby-mime-types/pull/79
188
+ [#84]: https://github.com/mime-types/ruby-mime-types/pull/84
189
+ [#85]: https://github.com/mime-types/ruby-mime-types/pull/85
190
+ [#95]: https://github.com/mime-types/ruby-mime-types/pull/95
191
+ [#97]: https://github.com/mime-types/ruby-mime-types/pull/97
192
+ [#112]: https://github.com/mime-types/ruby-mime-types/pull/112
193
+ [#117]: https://github.com/mime-types/ruby-mime-types/issues/117
194
+ [#118]: https://github.com/mime-types/ruby-mime-types/pull/118
195
+ [#125]: https://github.com/mime-types/ruby-mime-types/pull/125
196
+ [#126]: https://github.com/mime-types/ruby-mime-types/pull/126
197
+ [#127]: https://github.com/mime-types/ruby-mime-types/issues/127
198
+ [#129]: https://github.com/mime-types/ruby-mime-types/pull/129
199
+ [#130]: https://github.com/mime-types/ruby-mime-types/pull/130
200
+ [#127]: https://github.com/mime-types/ruby-mime-types/issues/127
201
+ [#132]: https://github.com/mime-types/ruby-mime-types/pull/132
202
+ [#134]: https://github.com/mime-types/ruby-mime-types/issues/134
203
+ [#135]: https://github.com/mime-types/ruby-mime-types/pull/135
204
+ [#136]: https://github.com/mime-types/ruby-mime-types/issues/136
205
+ [#137]: https://github.com/mime-types/ruby-mime-types/pull/137
206
+ [Code-of-Conduct.md]: Code-of-Conduct_md.html
207
+ [Contributor Covenant]: http://contributor-covenant.org
208
+ [mime-types-data]: https://github.com/mime-types/mime-types-data
@@ -1,18 +1,10 @@
1
- == Licence
1
+ ## Licence
2
2
 
3
- This software is available under three licences: the GNU GPL version 2 (or at
4
- your option, a later version), the Perl Artistic License, or the MIT License.
5
- The licence preferred by me is the MIT licence.
3
+ * Copyright 2003–2018 Austin Ziegler and contributors.
6
4
 
7
- The original Perl MIME::Types was dually originally licensed with the Perl
8
- Artistic Licence and the GNU GPL ("the same terms as Perl itself") and given
9
- that the Ruby implementation originally hewed pretty closely to the Perl
10
- version, I chose to maintain the additional licensing terms.
5
+ The software in this repository is made available under the MIT license.
11
6
 
12
- * Copyright 2003–2016 Austin Ziegler and other contributors.
13
- * Adapted from MIME::Types (Perl) by Mark Overmeer.
14
-
15
- === MIT License
7
+ ### MIT License
16
8
 
17
9
  Permission is hereby granted, free of charge, to any person obtaining a copy of
18
10
  this software and associated documentation files (the "Software"), to deal in
@@ -31,9 +23,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31
23
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32
24
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33
25
  SOFTWARE.
34
-
35
- === Perl Artistic License (version 2)
36
- See the file docs/artistic.txt in the main distribution.
37
-
38
- === GNU GPL version 2
39
- See the file docs/COPYING.txt in the main distribution.
data/Manifest.txt CHANGED
@@ -1,40 +1,23 @@
1
- Code-of-Conduct.rdoc
2
- Contributing.rdoc
3
- History-Types.rdoc
4
- History.rdoc
5
- Licence.rdoc
1
+ Code-of-Conduct.md
2
+ Contributing.md
3
+ History.md
4
+ Licence.md
6
5
  Manifest.txt
7
6
  README.rdoc
8
7
  Rakefile
9
- data/mime-types.json
10
- data/mime.content_type.column
11
- data/mime.docs.column
12
- data/mime.encoding.column
13
- data/mime.friendly.column
14
- data/mime.obsolete.column
15
- data/mime.registered.column
16
- data/mime.signature.column
17
- data/mime.use_instead.column
18
- data/mime.xrefs.column
19
- docs/COPYING.txt
20
- docs/artistic.txt
21
8
  lib/mime-types.rb
22
9
  lib/mime/type.rb
23
10
  lib/mime/type/columnar.rb
24
11
  lib/mime/types.rb
12
+ lib/mime/types/_columnar.rb
25
13
  lib/mime/types/cache.rb
26
14
  lib/mime/types/columnar.rb
15
+ lib/mime/types/container.rb
27
16
  lib/mime/types/deprecations.rb
17
+ lib/mime/types/full.rb
28
18
  lib/mime/types/loader.rb
29
- lib/mime/types/loader_path.rb
30
19
  lib/mime/types/logger.rb
31
- support/apache_mime_types.rb
32
- support/benchmarks/load.rb
33
- support/benchmarks/load_allocations.rb
34
- support/benchmarks/object_counts.rb
35
- support/convert.rb
36
- support/convert/columnar.rb
37
- support/iana_registry.rb
20
+ lib/mime/types/registry.rb
38
21
  test/bad-fixtures/malformed
39
22
  test/fixture/json.json
40
23
  test/fixture/old-data