Module: Net::IMAP::StringFormatter
- Defined in:
- lib/net/imap/command_data.rb
Constant Summary collapse
- LITERAL_REGEX =
/[\x80-\xff\r\n]/n
Class Method Summary collapse
-
.nstring(str) ⇒ Object
coerces non-nil using
to_s
. -
.string(str) ⇒ Object
coerces using
to_s
. -
.valid_nstring?(str) ⇒ Boolean
Allows nil, symbols, and strings.
-
.valid_string?(str) ⇒ Boolean
Allows symbols in addition to strings.
Class Method Details
.nstring(str) ⇒ Object
coerces non-nil using to_s
311 312 313 |
# File 'lib/net/imap/command_data.rb', line 311 def nstring(str) str.nil? ? nil : string(str) end |
.string(str) ⇒ Object
coerces using to_s
301 302 303 304 305 306 307 308 |
# File 'lib/net/imap/command_data.rb', line 301 def string(str) str = str.to_s if str =~ LITERAL_REGEX Literal.new(str) else QuotedString.new(str) end end |
.valid_nstring?(str) ⇒ Boolean
Allows nil, symbols, and strings
296 297 298 |
# File 'lib/net/imap/command_data.rb', line 296 def valid_nstring?(str) str.nil? || valid_string?(str) end |
.valid_string?(str) ⇒ Boolean
Allows symbols in addition to strings
291 292 293 |
# File 'lib/net/imap/command_data.rb', line 291 def valid_string?(str) str.is_a?(Symbol) || str.respond_to?(:to_str) end |