net-imap 0.5.1 → 0.5.2
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.
Potentially problematic release.
This version of net-imap might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +7 -3
- data/docs/styles.css +70 -14
- data/lib/net/imap/command_data.rb +21 -51
- data/lib/net/imap/data_lite.rb +225 -0
- data/lib/net/imap/esearch_result.rb +140 -0
- data/lib/net/imap/response_data.rb +1 -0
- data/lib/net/imap/response_parser/parser_utils.rb +5 -0
- data/lib/net/imap/response_parser.rb +72 -1
- data/lib/net/imap.rb +398 -187
- metadata +7 -5
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: net-imap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shugo Maeda
|
8
8
|
- nicholas a. evans
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-12-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: net-protocol
|
@@ -62,8 +62,10 @@ files:
|
|
62
62
|
- lib/net/imap/config/attr_inheritance.rb
|
63
63
|
- lib/net/imap/config/attr_type_coercion.rb
|
64
64
|
- lib/net/imap/data_encoding.rb
|
65
|
+
- lib/net/imap/data_lite.rb
|
65
66
|
- lib/net/imap/deprecated_client_options.rb
|
66
67
|
- lib/net/imap/errors.rb
|
68
|
+
- lib/net/imap/esearch_result.rb
|
67
69
|
- lib/net/imap/fetch_data.rb
|
68
70
|
- lib/net/imap/flags.rb
|
69
71
|
- lib/net/imap/response_data.rb
|
@@ -110,7 +112,7 @@ metadata:
|
|
110
112
|
homepage_uri: https://github.com/ruby/net-imap
|
111
113
|
source_code_uri: https://github.com/ruby/net-imap
|
112
114
|
changelog_uri: https://github.com/ruby/net-imap/releases
|
113
|
-
post_install_message:
|
115
|
+
post_install_message:
|
114
116
|
rdoc_options: []
|
115
117
|
require_paths:
|
116
118
|
- lib
|
@@ -126,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
128
|
version: '0'
|
127
129
|
requirements: []
|
128
130
|
rubygems_version: 3.5.22
|
129
|
-
signing_key:
|
131
|
+
signing_key:
|
130
132
|
specification_version: 4
|
131
133
|
summary: Ruby client api for Internet Message Access Protocol
|
132
134
|
test_files: []
|