mime 0.4.3 → 0.4.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 521f5a6513abe39c177b7a104f3daadffe034fe9
4
- data.tar.gz: f86cd41fcd40b2d0874c191743e917ded58d85a9
3
+ metadata.gz: d558a7b4c72b4c5fb4d30c34ac8b4631e2bd6e96
4
+ data.tar.gz: aafcced6437e9d61dac702fa280ee6371ad130df
5
5
  SHA512:
6
- metadata.gz: 5131353ba887c7aac163d87147fefac233eabc4e3f6ab9b65a3b746c45d4352739f6d4ce51ecbdcf3c9cee4e3273083836babc45d8b3f2d6c12f524498679c21
7
- data.tar.gz: 33782e5a37696c00faf723de25cfd6afc05542e95c08ccf86e2707eb77f400ba6fd85baa8d8095ec372542898c3aedbce555149db03bb2d368058aa67599eb9d
6
+ metadata.gz: 4661b6b6757f1bba10dc9e896f7394c7e52c0c379a815c9d4dadb8071e6a7e3f404659296730780773099c70666f00fc334c92a7826043c528cca6d68228e79b
7
+ data.tar.gz: 175ca343475e1f767b406f25dd38cd9f9d63d0a11babc4c831882b7abd56eca2c6cb2fd7591f550c7645c2e99266e685c1e76a38bc74224475b66407e690f53e
@@ -302,7 +302,7 @@ For many more examples, check the test class MIMETest.
302
302
 
303
303
  == Links
304
304
 
305
- Homepage :: http://ecentryx.com/gems/mime
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
- - http://tools.ietf.org/tools/msglint
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) 2014, Clint Pachl <pachl@ecentryx.com>
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
@@ -18,7 +18,7 @@
18
18
  #
19
19
  module MIME
20
20
 
21
- VERSION = '0.4.3'
21
+ VERSION = '0.4.4'
22
22
 
23
23
  # Defined in RFC: https://tools.ietf.org/html/rfc5322#section-2.1.1
24
24
  MAX_LINE_LENGTH = 998
@@ -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 = 'http://ecentryx.com/gems/mime'
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
@@ -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
- assert_equal nil, o.file_type('i.nil')
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.3
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: 2015-11-05 00:00:00.000000000 Z
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: http://ecentryx.com/gems/mime
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.4.5
86
+ rubygems_version: 2.6.11
87
87
  signing_key:
88
88
  specification_version: 4
89
89
  summary: Multipurpose Internet Mail Extensions (MIME) Library