mail_address 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: b03cd7ba2fd9683d34f2ef6a9c95592763e42378
4
- data.tar.gz: 1a43dd39f72c8093f9c672d160c6cf227ab49e9d
3
+ metadata.gz: 1271970cefd1db0a71b0b18cedc7d61f6cf9ef6d
4
+ data.tar.gz: aa2c24821e4238fb30bdd52b05c56de5f7b3c176
5
5
  SHA512:
6
- metadata.gz: 20cd422f2a139e2bdcc3c41a07aac6a9b456190a9dd7a7901afbff0244dc54b5ba8cdd7f2785417543e355d3b6ebe25c4ba5ca68b8aae84d387d4e0fad49fca9
7
- data.tar.gz: cf84e3c88168e14e06b848d02ac18bf861e6fcea26d4649688cab15a85b80f9eeaf4a0e675c9769dc9fc86f92254f5d9fda9024fcd89031209b02ccd4e942051
6
+ metadata.gz: 8ba6fc1d8ab3d48bf7a22fd902dfeca3f53b01c6802b969ce48e8067d4cacd57e5d8ae9639c54f61c43f7e588020c4c4aca6a2ac4dc756c655a15790a615777b
7
+ data.tar.gz: ce2b8f9c2fd8ec53b52375f296e68fe8a0aedb3b58708e973a51b03e40d5d10921e2c4230b0d799d4a176173d62d070e248c275037da32e1ba9ff863623089c4
@@ -95,11 +95,11 @@ module MailAddress
95
95
 
96
96
  # If the closer is a quote we go forward skipping escaped quotes until we
97
97
  # hit the real closing one.
98
- while (endpos && end_pos >= 0 && self.is_escaped_dbl_quote(str, end_pos))
98
+ while (end_pos && end_pos >= 0 && self.is_escaped_dbl_quote(str, end_pos))
99
99
  end_pos = str.index(closer_char, end_pos + 1)
100
100
  end
101
101
 
102
- token = (endpos && end_pos >= 0) ? str[pos .. end_pos] : ch
102
+ token = (end_pos && end_pos >= 0) ? str[pos .. end_pos] : ch
103
103
  return token
104
104
  end
105
105
 
@@ -1,3 +1,3 @@
1
1
  module MailAddress
2
- VERSION = "1.2.2"
2
+ VERSION = "1.2.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mail_address
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
  - Kizashi Nagata