mime-types 1.20.1 → 1.21
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/.hoerc +2 -0
- data/History.rdoc +10 -0
- data/Manifest.txt +2 -0
- data/README.rdoc +1 -1
- data/lib/mime/types.rb +1 -1
- data/lib/mime/types/application.nonstandard +4 -0
- data/lib/mime/types/image +2 -1
- data/lib/mime/types/text.nonstandard +1 -0
- metadata +7 -6
- metadata.gz.sig +1 -1
data.tar.gz.sig
CHANGED
Binary file
|
data/.hoerc
ADDED
data/History.rdoc
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
== 1.21 / 2013-02-09
|
2
|
+
|
3
|
+
* New MIME Types:
|
4
|
+
* Various new or updated MIME types by Garret Alfert:
|
5
|
+
application/vnd.ms-fontobject, .eot; application/x-chrome-extension, .crx;
|
6
|
+
application/x-web-app-manifest\+json, .webapp; application/x-xpinstall,
|
7
|
+
.xpi; image/svg\+xml, .svg, .svgz; image/webp, .webp; text/cache-manifest,
|
8
|
+
.appcache, .manifest. https://github.com/halostatue/mime-types/pull/24
|
9
|
+
* Fixed some Manifest.txt related madness on Travis.
|
10
|
+
|
1
11
|
== 1.20.1 / 2013-01-26
|
2
12
|
|
3
13
|
* New MIME Types:
|
data/Manifest.txt
CHANGED
data/README.rdoc
CHANGED
@@ -8,7 +8,7 @@ rdoc :: http://mime-types.rubyforge.org/
|
|
8
8
|
== Description
|
9
9
|
|
10
10
|
This library allows for the identification of a file's likely MIME content
|
11
|
-
type. This is release 1.
|
11
|
+
type. This is release 1.21 with new MIME types. The identification of MIME
|
12
12
|
content type is based on a file's filename extensions.
|
13
13
|
|
14
14
|
MIME types are used in MIME-compliant communications, as in e-mail or
|
data/lib/mime/types.rb
CHANGED
@@ -17,6 +17,7 @@
|
|
17
17
|
*application/vda 'LTSW
|
18
18
|
*application/vnd.adobe.air-application-installer-package+zip @air :base64
|
19
19
|
*application/vnd.android.package-archive @apk
|
20
|
+
*application/vnd.ms-fontobject @eot
|
20
21
|
*application/vnd.rn-realmedia @rm
|
21
22
|
*application/vnd.stardivision.calc @sdc
|
22
23
|
*application/vnd.stardivision.chart @sds
|
@@ -43,6 +44,7 @@ application/x-bleeper @bleep :base64
|
|
43
44
|
application/x-bzip2 @bz2
|
44
45
|
application/x-cdlink @vcd
|
45
46
|
application/x-chess-pgn @pgn
|
47
|
+
application/x-chrome-extension @crx
|
46
48
|
application/x-clariscad
|
47
49
|
application/x-compressed @z,Z :base64 'LTSW
|
48
50
|
application/x-cpio @cpio :base64 'LTSW
|
@@ -122,6 +124,8 @@ application/x-troff-ms @ms 'LTSW
|
|
122
124
|
application/x-ustar @ustar :base64 'LTSW
|
123
125
|
application/x-VMSBACKUP @bck :base64
|
124
126
|
application/x-wais-source @src 'LTSW
|
127
|
+
application/x-web-app-manifest+json @webapp
|
125
128
|
application/x-Wingz @wz
|
126
129
|
application/x-wordperfect6.1 @wp6
|
127
130
|
application/x-x509-ca-cert @crt :base64
|
131
|
+
application/x-xpinstall @xpi
|
data/lib/mime/types/image
CHANGED
@@ -14,7 +14,7 @@ image/png @png :base64 'IANA,[Randers-Pehrson]
|
|
14
14
|
image/prs.btif 'IANA,[Simon]
|
15
15
|
image/prs.pti 'IANA,[Laun]
|
16
16
|
image/pwg-raster 'IANA,[Sweet]
|
17
|
-
image/svg+xml @svg :8bit 'IANA,[W3C]
|
17
|
+
image/svg+xml @svg,svgz :8bit 'IANA,[W3C]
|
18
18
|
image/t38 'IANA,RFC3362
|
19
19
|
image/tiff @tiff,tif :base64 'IANA,RFC2302
|
20
20
|
image/tiff-fx 'IANA,RFC3950
|
@@ -43,3 +43,4 @@ image/vnd.sealedmedia.softseal.jpg 'IANA,[Petersen]
|
|
43
43
|
image/vnd.svf 'IANA,[Moline]
|
44
44
|
image/vnd.wap.wbmp 'IANA,[Stark]
|
45
45
|
image/vnd.xiff 'IANA,[S.Martin]
|
46
|
+
image/webp @webp
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mime-types
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: '1.21'
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -50,7 +50,7 @@ cert_chain:
|
|
50
50
|
-----END CERTIFICATE-----
|
51
51
|
|
52
52
|
'
|
53
|
-
date: 2013-02-
|
53
|
+
date: 2013-02-09 00:00:00.000000000 Z
|
54
54
|
dependencies:
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rubyforge
|
@@ -75,7 +75,7 @@ dependencies:
|
|
75
75
|
requirements:
|
76
76
|
- - ~>
|
77
77
|
- !ruby/object:Gem::Version
|
78
|
-
version: '4.
|
78
|
+
version: '4.6'
|
79
79
|
type: :development
|
80
80
|
prerelease: false
|
81
81
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -83,7 +83,7 @@ dependencies:
|
|
83
83
|
requirements:
|
84
84
|
- - ~>
|
85
85
|
- !ruby/object:Gem::Version
|
86
|
-
version: '4.
|
86
|
+
version: '4.6'
|
87
87
|
- !ruby/object:Gem::Dependency
|
88
88
|
name: rdoc
|
89
89
|
requirement: !ruby/object:Gem::Requirement
|
@@ -247,7 +247,7 @@ dependencies:
|
|
247
247
|
description: ! 'This library allows for the identification of a file''s likely MIME
|
248
248
|
content
|
249
249
|
|
250
|
-
type. This is release 1.
|
250
|
+
type. This is release 1.21 with new MIME types. The identification of MIME
|
251
251
|
|
252
252
|
content type is based on a file''s filename extensions.
|
253
253
|
|
@@ -298,6 +298,8 @@ extra_rdoc_files:
|
|
298
298
|
- docs/COPYING.txt
|
299
299
|
- docs/artistic.txt
|
300
300
|
files:
|
301
|
+
- .gemtest
|
302
|
+
- .hoerc
|
301
303
|
- .travis.yml
|
302
304
|
- Contributing.rdoc
|
303
305
|
- Gemfile
|
@@ -337,7 +339,6 @@ files:
|
|
337
339
|
- mime-types.gemspec
|
338
340
|
- test/test_mime_type.rb
|
339
341
|
- test/test_mime_types.rb
|
340
|
-
- .gemtest
|
341
342
|
homepage: http://mime-types.rubyforge.org/
|
342
343
|
licenses: []
|
343
344
|
post_install_message:
|
metadata.gz.sig
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
v%̈́�/�ތ����1L���o�%(�r�M� ���W
|