net-imap 0.4.18 → 0.4.20
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 +4 -4
- data/lib/net/imap/config/attr_type_coercion.rb +25 -21
- data/lib/net/imap/config.rb +169 -19
- data/lib/net/imap/errors.rb +33 -0
- data/lib/net/imap/response_data.rb +3 -54
- data/lib/net/imap/response_parser.rb +28 -13
- data/lib/net/imap/response_reader.rb +75 -0
- data/lib/net/imap/sequence_set.rb +254 -117
- data/lib/net/imap/uidplus_data.rb +326 -0
- data/lib/net/imap.rb +114 -41
- metadata +5 -6
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: net-imap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shugo Maeda
|
8
8
|
- nicholas a. evans
|
9
|
-
autorequire:
|
10
9
|
bindir: exe
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: net-protocol
|
@@ -69,6 +68,7 @@ files:
|
|
69
68
|
- lib/net/imap/response_data.rb
|
70
69
|
- lib/net/imap/response_parser.rb
|
71
70
|
- lib/net/imap/response_parser/parser_utils.rb
|
71
|
+
- lib/net/imap/response_reader.rb
|
72
72
|
- lib/net/imap/sasl.rb
|
73
73
|
- lib/net/imap/sasl/anonymous_authenticator.rb
|
74
74
|
- lib/net/imap/sasl/authentication_exchange.rb
|
@@ -95,6 +95,7 @@ files:
|
|
95
95
|
- lib/net/imap/stringprep/saslprep_tables.rb
|
96
96
|
- lib/net/imap/stringprep/tables.rb
|
97
97
|
- lib/net/imap/stringprep/trace.rb
|
98
|
+
- lib/net/imap/uidplus_data.rb
|
98
99
|
- net-imap.gemspec
|
99
100
|
- rakelib/benchmarks.rake
|
100
101
|
- rakelib/rdoc.rake
|
@@ -110,7 +111,6 @@ metadata:
|
|
110
111
|
homepage_uri: https://github.com/ruby/net-imap
|
111
112
|
source_code_uri: https://github.com/ruby/net-imap
|
112
113
|
changelog_uri: https://github.com/ruby/net-imap/releases
|
113
|
-
post_install_message:
|
114
114
|
rdoc_options: []
|
115
115
|
require_paths:
|
116
116
|
- lib
|
@@ -125,8 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
125
125
|
- !ruby/object:Gem::Version
|
126
126
|
version: '0'
|
127
127
|
requirements: []
|
128
|
-
rubygems_version: 3.
|
129
|
-
signing_key:
|
128
|
+
rubygems_version: 3.6.7
|
130
129
|
specification_version: 4
|
131
130
|
summary: Ruby client api for Internet Message Access Protocol
|
132
131
|
test_files: []
|