net-receiver 1.2.2 → 1.2.3

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: 4d5eea2e6448830a5f0eab76eec380fd40da0f8a
4
- data.tar.gz: 9b5373996ea3bc356c5d41f979cd35bdd49fa5ce
3
+ metadata.gz: a668b49e6e17fc7a808c3a2e7e601adb986edd4f
4
+ data.tar.gz: 211c4811bc1a1f92f5ac39734e0f7c05b5c42076
5
5
  SHA512:
6
- metadata.gz: 71299d172ed45dd97cfcf98e13dc19bf48d7fe02dca670e382d1df0a3e53e7b4198f94713c2cefa30b27b7562a8385c56290583d37a848ab83ebb2b68a469582
7
- data.tar.gz: bb0f889c65ec8c97ae6e00714efb642fdd51ea7a139440454f5199cc38588df22ad4c327f6e871946dcf445956b5d369f7e2391b0bcc7a4cba1b1aecf9d7363e
6
+ metadata.gz: 6cc69e2cf5693334f9f1e2e69bb106909b3a02f71e59f94c5ff054c3a13e99131f89da6422f26d371ceed6e489a89e7a5fa0946d32db8672de50477aaeaa632d
7
+ data.tar.gz: 4b4c535243a54ee01e14cf159fd9ac5ffe3cdaf628a1a10fda98be0ec1a5b3165b73eee520df32aff6c6bdc16469936f1a0314ca6af0d6f488750779cddafd39
@@ -1,3 +1,11 @@
1
+ # v1.2.3
2
+ Changed `ItemOfMail#reconstituted_email` to properly reconstitute the email with the changes made in v1.2.1.
3
+
4
+
5
+ # v1.2.2
6
+ Updated the README.md.
7
+
8
+
1
9
  # v1.2.1
2
10
  Changed the way the headers are stored in the data section of an ItemOfMail object. They are stored in a Hash, and each key is
3
11
  made all lower case and hyphens are converted to underscores. Each value is the entire line of the original header, as is.
@@ -36,7 +36,7 @@ module Net
36
36
 
37
37
  def reconstituted_email
38
38
  text = []
39
- self[:data][:headers].each { |k,v| text << "#{k}:#{v}" }
39
+ self[:data][:headers].each { |k,v| text << "#{v}" }
40
40
  text.concat(self[:data][:text])
41
41
  text.join(CRLF)+CRLF
42
42
  end
@@ -1,4 +1,4 @@
1
1
  module Net
2
- BUILD_VERSION = "1.2.2"
2
+ BUILD_VERSION = "1.2.3"
3
3
  BUILD_DATE = "2016-10-05"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: net-receiver
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael J. Welch, Ph.D.