mime-types 1.20 → 1.20.1
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.
- data.tar.gz.sig +0 -0
- data/History.rdoc +7 -1
- data/README.rdoc +1 -1
- data/lib/mime/types.rb +2 -2
- data/mime-types.gemspec +4 -4
- metadata +2 -2
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
|
Binary file
|
data/History.rdoc
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
== 1.20 / 2013-01-26
|
|
1
|
+
== 1.20.1 / 2013-01-26
|
|
2
|
+
|
|
2
3
|
* New MIME Types:
|
|
3
4
|
* Apple iWork document types added by Hans de Graaff
|
|
4
5
|
(application/x-iwork-keynote-sffkey, .key;
|
|
@@ -9,12 +10,17 @@
|
|
|
9
10
|
Linhares (mac:application/x-apple-diskimage, .dmg; application/epub\+zip,
|
|
10
11
|
.epub; application/x-ibooks\+zip, .ibooks; application/x-mobipocket-ebook,
|
|
11
12
|
.mobi). https://github.com/halostatue/mime-types/issue/22
|
|
13
|
+
* rss content type by Garret Alfert (application/rss\+xml, .rss).
|
|
14
|
+
https://github.com/halostatue/mime-types/issue/23
|
|
12
15
|
* Added or updated MIME types from the latest IANA list.
|
|
13
16
|
* Fixed MIME Types:
|
|
14
17
|
* Excel macro-enabled spreadsheets had an incorrect extension. Thanks to
|
|
15
18
|
Rafael Belvederese for reporting this issue.
|
|
16
19
|
https://github.com/halostatue/mime-types/issue/21
|
|
17
20
|
* Enabled for use with travis.
|
|
21
|
+
* Enabled gem signing.
|
|
22
|
+
* Fixed an error related to MIME type downloads.
|
|
23
|
+
* This was previously published as 1.20, but I had forgotten some attributions.
|
|
18
24
|
|
|
19
25
|
== 1.19 / 2012-06-20
|
|
20
26
|
* New MIME Types:
|
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.20 with new MIME types. The identification of MIME
|
|
11
|
+
type. This is release 1.20.1 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
|
@@ -25,7 +25,7 @@ module MIME
|
|
|
25
25
|
#
|
|
26
26
|
class Type
|
|
27
27
|
# The released version of Ruby MIME::Types
|
|
28
|
-
VERSION = '1.20'
|
|
28
|
+
VERSION = '1.20.1'
|
|
29
29
|
|
|
30
30
|
include Comparable
|
|
31
31
|
|
|
@@ -567,7 +567,7 @@ module MIME
|
|
|
567
567
|
# = Author
|
|
568
568
|
# Copyright:: Copyright 2002–2013 by Austin Ziegler
|
|
569
569
|
# <austin@rubyforge.org>
|
|
570
|
-
# Version:: 1.20
|
|
570
|
+
# Version:: 1.20.1
|
|
571
571
|
# Licence:: See Licence.rdoc
|
|
572
572
|
# See Also:: http://www.iana.org/assignments/media-types/
|
|
573
573
|
# http://www.ltsw.se/knbase/internet/mime.htp
|
data/mime-types.gemspec
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = "mime-types"
|
|
5
|
-
s.version = "1.20"
|
|
5
|
+
s.version = "1.20.1"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Austin Ziegler"]
|
|
9
9
|
s.date = "2013-02-04"
|
|
10
|
-
s.description = "This library allows for the identification of a file's likely MIME content\ntype. This is release 1.20 with new MIME types. The identification of MIME\ncontent type is based on a file's filename extensions.\n\nMIME types are used in MIME-compliant communications, as in e-mail or\nHTTP traffic, to indicate the type of content which is transmitted.\nMIME::Types provides the ability for detailed information about MIME\nentities (provided as a set of MIME::Type objects) to be determined and\nused programmatically. There are many types defined by RFCs and vendors,\nso the list is long but not complete; don't hesitate to ask to add\nadditional information. This library follows the IANA collection of MIME\ntypes (see below for reference).\n\nMIME::Types for Ruby was originally based on and synchronized with MIME::Types\nfor Perl by Mark Overmeer, copyright 2001 - 2009. As of version 1.15, the data\nformat for the MIME::Type list has changed and the synchronization will no\nlonger happen.\n\nMIME::Types is built to conform to the MIME types of RFCs 2045 and 2231. It\nfollows the official {IANA registry}[http://www.iana.org/assignments/media-types/]\n({ftp}[ftp://ftp.iana.org/assignments/media-types]) with some unofficial types\nadded from the the {LTSW collection}[http://www.ltsw.se/knbase/internet/mime.htp]."
|
|
10
|
+
s.description = "This library allows for the identification of a file's likely MIME content\ntype. This is release 1.20.1 with new MIME types. The identification of MIME\ncontent type is based on a file's filename extensions.\n\nMIME types are used in MIME-compliant communications, as in e-mail or\nHTTP traffic, to indicate the type of content which is transmitted.\nMIME::Types provides the ability for detailed information about MIME\nentities (provided as a set of MIME::Type objects) to be determined and\nused programmatically. There are many types defined by RFCs and vendors,\nso the list is long but not complete; don't hesitate to ask to add\nadditional information. This library follows the IANA collection of MIME\ntypes (see below for reference).\n\nMIME::Types for Ruby was originally based on and synchronized with MIME::Types\nfor Perl by Mark Overmeer, copyright 2001 - 2009. As of version 1.15, the data\nformat for the MIME::Type list has changed and the synchronization will no\nlonger happen.\n\nMIME::Types is built to conform to the MIME types of RFCs 2045 and 2231. It\nfollows the official {IANA registry}[http://www.iana.org/assignments/media-types/]\n({ftp}[ftp://ftp.iana.org/assignments/media-types]) with some unofficial types\nadded from the the {LTSW collection}[http://www.ltsw.se/knbase/internet/mime.htp]."
|
|
11
11
|
s.email = ["austin@rubyforge.org"]
|
|
12
|
-
s.extra_rdoc_files = ["History.rdoc", "Licence.rdoc", "Manifest.txt", "README.rdoc", "Contributing.rdoc", "History.rdoc", "Licence.rdoc", "README.rdoc"]
|
|
13
|
-
s.files = [".travis.yml", "
|
|
12
|
+
s.extra_rdoc_files = ["Contributing.rdoc", "History.rdoc", "Licence.rdoc", "Manifest.txt", "README.rdoc", "docs/COPYING.txt", "docs/artistic.txt", "Contributing.rdoc", "History.rdoc", "Licence.rdoc", "README.rdoc"]
|
|
13
|
+
s.files = [".travis.yml", "Contributing.rdoc", "Gemfile", "History.rdoc", "Licence.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "docs/COPYING.txt", "docs/artistic.txt", "lib/mime-types.rb", "lib/mime/types.rb", "lib/mime/types/application", "lib/mime/types/application.mac", "lib/mime/types/application.nonstandard", "lib/mime/types/application.obsolete", "lib/mime/types/audio", "lib/mime/types/audio.nonstandard", "lib/mime/types/audio.obsolete", "lib/mime/types/image", "lib/mime/types/image.nonstandard", "lib/mime/types/image.obsolete", "lib/mime/types/message", "lib/mime/types/message.obsolete", "lib/mime/types/model", "lib/mime/types/multipart", "lib/mime/types/multipart.nonstandard", "lib/mime/types/multipart.obsolete", "lib/mime/types/other.nonstandard", "lib/mime/types/text", "lib/mime/types/text.nonstandard", "lib/mime/types/text.obsolete", "lib/mime/types/text.vms", "lib/mime/types/video", "lib/mime/types/video.nonstandard", "lib/mime/types/video.obsolete", "mime-types.gemspec", "test/test_mime_type.rb", "test/test_mime_types.rb", ".gemtest"]
|
|
14
14
|
s.homepage = "http://mime-types.rubyforge.org/"
|
|
15
15
|
s.rdoc_options = ["--main", "README.rdoc"]
|
|
16
16
|
s.require_paths = ["lib"]
|
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:
|
|
4
|
+
version: 1.20.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -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.20 with new MIME types. The identification of MIME
|
|
250
|
+
type. This is release 1.20.1 with new MIME types. The identification of MIME
|
|
251
251
|
|
|
252
252
|
content type is based on a file''s filename extensions.
|
|
253
253
|
|
metadata.gz.sig
CHANGED
|
Binary file
|