mime 0.4.3 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +6 -3
- data/lib/mime.rb +1 -1
- data/mime.gemspec +1 -1
- data/test/test_mime.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d558a7b4c72b4c5fb4d30c34ac8b4631e2bd6e96
|
4
|
+
data.tar.gz: aafcced6437e9d61dac702fa280ee6371ad130df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4661b6b6757f1bba10dc9e896f7394c7e52c0c379a815c9d4dadb8071e6a7e3f404659296730780773099c70666f00fc334c92a7826043c528cca6d68228e79b
|
7
|
+
data.tar.gz: 175ca343475e1f767b406f25dd38cd9f9d63d0a11babc4c831882b7abd56eca2c6cb2fd7591f550c7645c2e99266e685c1e76a38bc74224475b66407e690f53e
|
data/README.rdoc
CHANGED
@@ -302,7 +302,7 @@ For many more examples, check the test class MIMETest.
|
|
302
302
|
|
303
303
|
== Links
|
304
304
|
|
305
|
-
Homepage ::
|
305
|
+
Homepage :: https://ecentryx.com/gems/mime
|
306
306
|
Ruby Gem :: https://rubygems.org/gems/mime
|
307
307
|
Source Code :: https://bitbucket.org/pachl/mime/src
|
308
308
|
Bug Tracker :: https://bitbucket.org/pachl/mime/issues
|
@@ -311,7 +311,7 @@ Validators :: Please check *all* of your messages using the following lint
|
|
311
311
|
pachl@ecentryx.com with "Ruby MIME" in the subject.
|
312
312
|
|
313
313
|
- http://www.apps.ietf.org/content/message-lint
|
314
|
-
-
|
314
|
+
- https://tools.ietf.org/tools/msglint/
|
315
315
|
|
316
316
|
|
317
317
|
== History
|
@@ -378,13 +378,16 @@ Validators :: Please check *all* of your messages using the following lint
|
|
378
378
|
7. 2015-11-05, v0.4.3
|
379
379
|
* FIX: Add "type" parameter to Multipart/Related messages (RFC conformance).
|
380
380
|
* FIX: Documention bug regarding Multipart/Alternative entity order.
|
381
|
+
8. 2017-06-03, v0.4.4
|
382
|
+
* FIX: Deprecated test code.
|
383
|
+
* Update README URLs.
|
381
384
|
|
382
385
|
|
383
386
|
== License
|
384
387
|
|
385
388
|
({ISC License}[http://opensource.org/licenses/ISC])
|
386
389
|
|
387
|
-
Copyright (c)
|
390
|
+
Copyright (c) 2017, Clint Pachl <pachl@ecentryx.com>
|
388
391
|
|
389
392
|
Permission to use, copy, modify, and/or distribute this software for any purpose
|
390
393
|
with or without fee is hereby granted, provided that the above copyright notice
|
data/lib/mime.rb
CHANGED
data/mime.gemspec
CHANGED
@@ -3,7 +3,7 @@ version = File.read('./lib/mime.rb')[/VERSION = '(.*)'/, 1]
|
|
3
3
|
Gem::Specification.new('mime', version) do |s|
|
4
4
|
s.author = 'Clint Pachl'
|
5
5
|
s.email = 'pachl@ecentryx.com'
|
6
|
-
s.homepage = '
|
6
|
+
s.homepage = 'https://ecentryx.com/gems/mime'
|
7
7
|
s.license = 'ISC'
|
8
8
|
s.summary = 'Multipurpose Internet Mail Extensions (MIME) Library'
|
9
9
|
s.description = <<-EOF
|
data/test/test_mime.rb
CHANGED
@@ -520,7 +520,7 @@ EOF
|
|
520
520
|
assert_equal 'application/octet-stream', o.file_type('c.iso')
|
521
521
|
assert_equal 'audio/mpeg', o.file_type('/d/e.mp3')
|
522
522
|
assert_equal 'text/css', o.file_type('/f/g/h.css')
|
523
|
-
|
523
|
+
assert_nil o.file_type('i.nil')
|
524
524
|
|
525
525
|
# test using file object
|
526
526
|
img_type = open(sd('ruby.png')) {|f| o.file_type(f)}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Clint Pachl
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
A library for building RFC compliant Multipurpose Internet Mail Extensions
|
@@ -63,7 +63,7 @@ files:
|
|
63
63
|
- test/test_mime.rb
|
64
64
|
- test/test_mime.rb-try
|
65
65
|
- test/test_text_flowed.rb
|
66
|
-
homepage:
|
66
|
+
homepage: https://ecentryx.com/gems/mime
|
67
67
|
licenses:
|
68
68
|
- ISC
|
69
69
|
metadata: {}
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
version: '0'
|
84
84
|
requirements: []
|
85
85
|
rubyforge_project:
|
86
|
-
rubygems_version: 2.
|
86
|
+
rubygems_version: 2.6.11
|
87
87
|
signing_key:
|
88
88
|
specification_version: 4
|
89
89
|
summary: Multipurpose Internet Mail Extensions (MIME) Library
|