net-imap 0.6.5 → 0.6.6

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
  SHA256:
3
- metadata.gz: cd2bbaf7d6564739894405f3066c772976b48062ea2c696b741d10aa34ebbed6
4
- data.tar.gz: 1fa2b00d9869e60e44be3a3aea1e058f0974705aef5a41a62f4ea25ee4fda48d
3
+ metadata.gz: 2fc8fe0589b4b3cf22687ee9731136d4bb4fae32bceadffdad5cb4fdc225741b
4
+ data.tar.gz: 6c72c3817f3bd9c1ba7b6edbf01c5808e7d9c785effcc09294435944ccbdd33b
5
5
  SHA512:
6
- metadata.gz: dc1083920d0f196a21db61ef8282be1aa214e43b38ba18bf5ada58fa16d9b007f2169332fc0df2e5799e2ec1e76f15b1469d0c2401e851feb0409237b7f60ee2
7
- data.tar.gz: 4b9c9ba8892b67ec86c39f4ad3f28c5dd91ad785def8b9324175a0f6bac6940dffde3499135f045a911dde98646afff687c2bd6381117f14bdf68de244f03dea
6
+ metadata.gz: 2e24f88144b2329c18a03c9fcc5630ac6a6c50b88f14107c09abd29762eaa94467ab345fb356edf8d891b244b1c8d3dcc2a4033166ddc6bbde7131ffba3e0d59
7
+ data.tar.gz: bc71d03a81f9d268f0c3c359939150fd78c8fbe06dc5dba7e5de77d2f10d21f1155acafd8f670afae6aafea77e0fbd4f150f8cdcbf4e1301ba7a9695a1bba9d9
@@ -58,7 +58,7 @@ module Net
58
58
  end
59
59
  end
60
60
 
61
- UNQUOTABLE_CHARS = /\0\r\n/
61
+ UNQUOTABLE_CHARS = /[\0\r\n]/
62
62
  ASTRING_SPECIALS = /[(){ \x00-\x1f\x7f%*"\\]/
63
63
  private_constant :UNQUOTABLE_CHARS, :ASTRING_SPECIALS
64
64
 
data/lib/net/imap.rb CHANGED
@@ -819,7 +819,7 @@ module Net
819
819
  # * {IMAP URLAUTH Authorization Mechanism Registry}[https://www.iana.org/assignments/urlauth-authorization-mechanism-registry/urlauth-authorization-mechanism-registry.xhtml]
820
820
  #
821
821
  class IMAP < Protocol
822
- VERSION = "0.6.5"
822
+ VERSION = "0.6.6"
823
823
 
824
824
  # Aliases for supported capabilities, to be used with the #enable command.
825
825
  ENABLE_ALIASES = {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: net-imap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.5
4
+ version: 0.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shugo Maeda