imapcli 0.0.1 → 1.0.0
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/Gemfile +1 -0
- data/Gemfile.lock +4 -0
- data/NEWS +9 -0
- data/README.md +181 -53
- data/bin/imapcli +58 -18
- data/imapcli.gemspec +2 -1
- data/lib/imapcli.rb +2 -0
- data/lib/imapcli/client.rb +11 -22
- data/lib/imapcli/command.rb +106 -39
- data/lib/imapcli/mailbox.rb +95 -20
- data/lib/imapcli/option_validator.rb +70 -0
- data/lib/imapcli/stats.rb +62 -0
- data/lib/imapcli/version.rb +1 -1
- data/spec/lib/imapcli/client_spec.rb +3 -3
- data/spec/lib/imapcli/command_spec.rb +123 -0
- data/spec/lib/imapcli/mailbox_spec.rb +61 -3
- data/spec/lib/imapcli/option_validator_spec.rb +4 -0
- data/spec/lib/imapcli/stats_spec.rb +68 -0
- data/spec/spec_helper.rb +2 -0
- metadata +11 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: imapcli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Kraus (bovender)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -66,6 +66,7 @@ files:
|
|
66
66
|
- Gemfile
|
67
67
|
- Gemfile.lock
|
68
68
|
- Guardfile
|
69
|
+
- NEWS
|
69
70
|
- README.md
|
70
71
|
- Rakefile
|
71
72
|
- bin/imapcli
|
@@ -75,12 +76,18 @@ files:
|
|
75
76
|
- lib/imapcli/client.rb
|
76
77
|
- lib/imapcli/command.rb
|
77
78
|
- lib/imapcli/mailbox.rb
|
79
|
+
- lib/imapcli/option_validator.rb
|
80
|
+
- lib/imapcli/stats.rb
|
78
81
|
- lib/imapcli/version.rb
|
79
82
|
- spec/lib/imapcli/client_spec.rb
|
83
|
+
- spec/lib/imapcli/command_spec.rb
|
80
84
|
- spec/lib/imapcli/mailbox_spec.rb
|
85
|
+
- spec/lib/imapcli/option_validator_spec.rb
|
86
|
+
- spec/lib/imapcli/stats_spec.rb
|
81
87
|
- spec/spec_helper.rb
|
82
88
|
homepage: https://github.com/bovender/imapcli
|
83
|
-
licenses:
|
89
|
+
licenses:
|
90
|
+
- Apache-2.0
|
84
91
|
metadata: {}
|
85
92
|
post_install_message:
|
86
93
|
rdoc_options:
|
@@ -107,5 +114,5 @@ rubyforge_project:
|
|
107
114
|
rubygems_version: 2.6.11
|
108
115
|
signing_key:
|
109
116
|
specification_version: 4
|
110
|
-
summary:
|
117
|
+
summary: Command-line tool to query IMAP servers
|
111
118
|
test_files: []
|