imapcli 1.0.5 → 2.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/.devcontainer/devcontainer.json +22 -0
- data/.github/dependabot.yml +12 -0
- data/.github/workflows/ci.yml +57 -0
- data/.gitignore +5 -0
- data/.rubocop.yml +53 -0
- data/.vscode/launch.json +59 -0
- data/CHANGELOG.md +71 -0
- data/Dockerfile +8 -5
- data/Gemfile +13 -4
- data/Gemfile.lock +189 -67
- data/Guardfile +8 -6
- data/README.md +68 -101
- data/Rakefile +5 -7
- data/bin/bundle +109 -0
- data/bin/rspec +27 -0
- data/bin/rubocop +27 -0
- data/exe/imapcli +8 -0
- data/imapcli.gemspec +26 -19
- data/lib/imapcli/cli.rb +180 -0
- data/lib/imapcli/client.rb +32 -32
- data/lib/imapcli/command.rb +44 -44
- data/lib/imapcli/mailbox.rb +34 -38
- data/lib/imapcli/option_validator.rb +6 -6
- data/lib/imapcli/stats.rb +9 -11
- data/lib/imapcli/version.rb +3 -1
- data/lib/imapcli.rb +20 -6
- data/spec/lib/imapcli/client_spec.rb +34 -22
- data/spec/lib/imapcli/command_spec.rb +35 -31
- data/spec/lib/imapcli/mailbox_spec.rb +36 -23
- data/spec/lib/imapcli/stats_spec.rb +18 -16
- data/spec/spec_helper.rb +22 -70
- metadata +64 -44
- data/.rspec +0 -1
- data/NEWS +0 -12
- data/bin/imapcli +0 -164
- data/spec/lib/imapcli/option_validator_spec.rb +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 251ac4bd70a607d8891eb4035bf69ba10017995436d2af15138e8647ac042530
|
4
|
+
data.tar.gz: 57072fa35d2eb0e53a85e27464638844fedb83807c8e4f98ad59c502cbd07be3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5cfc0a536bb6ae0b71e4262cf9ae03d7213c093c10b6c47597a02ee2bac101357423ec0df5a66038d2e6673fcf03973cef1d564015dc56dd3c665bcb31521da4
|
7
|
+
data.tar.gz: b2f986bd44dfe6e3374b272bf50fd238ebff681665a32ddad07c2930e8842f5132c27df861dd31f13486b167179649b94ea2e788679721f952662a6620170102
|
@@ -0,0 +1,22 @@
|
|
1
|
+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
2
|
+
// README at: https://github.com/devcontainers/templates/tree/main/src/ruby
|
3
|
+
{
|
4
|
+
"name": "Ruby",
|
5
|
+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
6
|
+
"image": "mcr.microsoft.com/devcontainers/ruby:1-3.3-bullseye"
|
7
|
+
|
8
|
+
// Features to add to the dev container. More info: https://containers.dev/features.
|
9
|
+
// "features": {},
|
10
|
+
|
11
|
+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
12
|
+
// "forwardPorts": [],
|
13
|
+
|
14
|
+
// Use 'postCreateCommand' to run commands after the container is created.
|
15
|
+
// "postCreateCommand": "ruby --version",
|
16
|
+
|
17
|
+
// Configure tool-specific properties.
|
18
|
+
// "customizations": {},
|
19
|
+
|
20
|
+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
21
|
+
// "remoteUser": "root"
|
22
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
3
|
+
# Please see the documentation for more information:
|
4
|
+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
5
|
+
# https://containers.dev/guide/dependabot
|
6
|
+
|
7
|
+
version: 2
|
8
|
+
updates:
|
9
|
+
- package-ecosystem: "devcontainers"
|
10
|
+
directory: "/"
|
11
|
+
schedule:
|
12
|
+
interval: weekly
|
@@ -0,0 +1,57 @@
|
|
1
|
+
---
|
2
|
+
name: CI
|
3
|
+
|
4
|
+
on:
|
5
|
+
push:
|
6
|
+
branches:
|
7
|
+
- '**'
|
8
|
+
pull_request:
|
9
|
+
branches:
|
10
|
+
- '**'
|
11
|
+
schedule:
|
12
|
+
- cron: '0 4 1 * *'
|
13
|
+
|
14
|
+
jobs:
|
15
|
+
rubocop:
|
16
|
+
runs-on: ubuntu-latest
|
17
|
+
|
18
|
+
steps:
|
19
|
+
- name: Checkout
|
20
|
+
uses: actions/checkout@v4
|
21
|
+
|
22
|
+
- name: Setup Ruby
|
23
|
+
uses: ruby/setup-ruby@v1
|
24
|
+
with:
|
25
|
+
ruby-version: '3.3'
|
26
|
+
|
27
|
+
- name: Bundler
|
28
|
+
run: bundle install
|
29
|
+
|
30
|
+
- name: Rubocop
|
31
|
+
run: bin/rubocop
|
32
|
+
|
33
|
+
rspec:
|
34
|
+
runs-on: ubuntu-latest
|
35
|
+
|
36
|
+
strategy:
|
37
|
+
fail-fast: false
|
38
|
+
matrix:
|
39
|
+
ruby:
|
40
|
+
- '3.3'
|
41
|
+
- '3.2'
|
42
|
+
- '3.1'
|
43
|
+
# - 'head'
|
44
|
+
- 'truffleruby'
|
45
|
+
|
46
|
+
steps:
|
47
|
+
- name: Checkout
|
48
|
+
uses: actions/checkout@v4
|
49
|
+
|
50
|
+
- name: Setup Ruby
|
51
|
+
uses: ruby/setup-ruby@v1
|
52
|
+
with:
|
53
|
+
ruby-version: ${{ matrix.ruby }}
|
54
|
+
bundler-cache: true
|
55
|
+
|
56
|
+
- name: RSpec
|
57
|
+
run: bin/rspec
|
data/.gitignore
CHANGED
data/.rubocop.yml
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
---
|
2
|
+
require:
|
3
|
+
- rubocop-performance
|
4
|
+
- rubocop-rake
|
5
|
+
- rubocop-rspec
|
6
|
+
|
7
|
+
AllCops:
|
8
|
+
NewCops: enable
|
9
|
+
TargetRubyVersion: 3.1
|
10
|
+
Exclude:
|
11
|
+
- bin/*
|
12
|
+
|
13
|
+
Gemspec/RequireMFA:
|
14
|
+
Enabled: false
|
15
|
+
|
16
|
+
#########
|
17
|
+
# STYLE #
|
18
|
+
#########
|
19
|
+
|
20
|
+
Style/TrailingCommaInArrayLiteral:
|
21
|
+
EnforcedStyleForMultiline: consistent_comma
|
22
|
+
|
23
|
+
Style/TrailingCommaInHashLiteral:
|
24
|
+
EnforcedStyleForMultiline: consistent_comma
|
25
|
+
|
26
|
+
##########
|
27
|
+
# LAYOUT #
|
28
|
+
##########
|
29
|
+
|
30
|
+
Layout/EmptyLines:
|
31
|
+
Enabled: false
|
32
|
+
|
33
|
+
Layout/EmptyLineBetweenDefs:
|
34
|
+
Enabled: false
|
35
|
+
|
36
|
+
Layout/EmptyLinesAroundClassBody:
|
37
|
+
Enabled: false
|
38
|
+
|
39
|
+
Layout/EmptyLinesAroundBlockBody:
|
40
|
+
Enabled: false
|
41
|
+
|
42
|
+
Layout/EmptyLinesAroundModuleBody:
|
43
|
+
Enabled: false
|
44
|
+
|
45
|
+
#########
|
46
|
+
# RSPEC #
|
47
|
+
#########
|
48
|
+
|
49
|
+
RSpec/NotToNot:
|
50
|
+
EnforcedStyle: to_not
|
51
|
+
|
52
|
+
RSpec/MultipleExpectations:
|
53
|
+
Max: 4
|
data/.vscode/launch.json
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
{
|
2
|
+
// Use IntelliSense to learn about possible attributes.
|
3
|
+
// Hover to view descriptions of existing attributes.
|
4
|
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
5
|
+
"version": "0.2.0",
|
6
|
+
"configurations": [
|
7
|
+
{
|
8
|
+
"type": "ruby_lsp",
|
9
|
+
"request": "launch",
|
10
|
+
"name": "Run imapcli with arguments",
|
11
|
+
"program": "ruby ${workspaceFolder}/exe/imapcli -s ${input:server} -u ${input:user} -p ${input:pass} ${input:command}"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"type": "ruby_lsp",
|
15
|
+
"request": "launch",
|
16
|
+
"name": "Run rspec",
|
17
|
+
"program": "rspec"
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"type": "ruby_lsp",
|
21
|
+
"name": "Debug script",
|
22
|
+
"request": "launch",
|
23
|
+
"program": "ruby ${file}"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"type": "ruby_lsp",
|
27
|
+
"name": "Debug test",
|
28
|
+
"request": "launch",
|
29
|
+
"program": "ruby -Itest ${relativeFile}"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"type": "ruby_lsp",
|
33
|
+
"name": "Attach debugger",
|
34
|
+
"request": "attach"
|
35
|
+
}
|
36
|
+
],
|
37
|
+
"inputs": [
|
38
|
+
{
|
39
|
+
"id": "server",
|
40
|
+
"type": "promptString",
|
41
|
+
"description": "FQDN of the mail server to connect to"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"id": "user",
|
45
|
+
"type": "promptString",
|
46
|
+
"description": "IMAP user"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"id": "pass",
|
50
|
+
"type": "promptString",
|
51
|
+
"description": "Password of the IMAP user (BE AWARE THAT THIS IS NOT ENCRYPTED IN THE DEBUG ENVIRONMENT)"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"id": "command",
|
55
|
+
"type": "promptString",
|
56
|
+
"description": "Command with optional arguments"
|
57
|
+
},
|
58
|
+
]
|
59
|
+
}
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
|
+
|
8
|
+
## [Version 2.0.0 (2025-03-10)][v2.0.0]
|
9
|
+
|
10
|
+
### Added
|
11
|
+
|
12
|
+
- `stats` command: Added new option switch `-H`/`--human`.
|
13
|
+
- `stats` command: Added new option switch `--reverse` to reverse the sort
|
14
|
+
order.
|
15
|
+
|
16
|
+
### Changed
|
17
|
+
|
18
|
+
- **BREAKING:** Message sizes are now output in bytes by default. This also
|
19
|
+
applies to CSV output. Use the new `-H`/`--human` switch to convert byte
|
20
|
+
counts to SI-prefixed numbers.
|
21
|
+
- **BREAKING:** The sort properties `q1` and `q3` have been renamed to `q1_size`
|
22
|
+
and `q3_size`.
|
23
|
+
- Output: Draw table borders in blue for better visual separation.
|
24
|
+
- Output: Draw a separator line above the 'total' row.
|
25
|
+
- Updated dependencies.
|
26
|
+
|
27
|
+
### Fixed
|
28
|
+
|
29
|
+
- `stats` command: Sort did not work at all.
|
30
|
+
- Do not crash when collecting stats for mailboxes with a very large number of
|
31
|
+
messages. Closes Github issue #8.
|
32
|
+
|
33
|
+
### Removed
|
34
|
+
|
35
|
+
- **BREAKING:** Removed the `-O` switch to reverse the sort order as it did not
|
36
|
+
work as intended
|
37
|
+
|
38
|
+
## [Version 1.0.7 (2022-03-02)][v1.0.7]
|
39
|
+
|
40
|
+
### Changed
|
41
|
+
|
42
|
+
- Update dependencies.
|
43
|
+
|
44
|
+
## Version 1.0.6
|
45
|
+
|
46
|
+
### Fixed
|
47
|
+
|
48
|
+
- Fix Docker build.
|
49
|
+
|
50
|
+
## [Version 1.0.5][v1.0.5]
|
51
|
+
|
52
|
+
### Fixed
|
53
|
+
|
54
|
+
- Update bundle to address CVE-2018-1000201.
|
55
|
+
|
56
|
+
## Version 1.0.4
|
57
|
+
|
58
|
+
### Fixed
|
59
|
+
|
60
|
+
- Update rake to address CVE-2020-8130.
|
61
|
+
|
62
|
+
## Previous versions
|
63
|
+
|
64
|
+
### Fixed
|
65
|
+
|
66
|
+
- Fix: Docker image.
|
67
|
+
- Fix: Options error message.
|
68
|
+
|
69
|
+
[v2.0.0]: https://github.com/bovender/imapcli/releases/tag/v2.0.0
|
70
|
+
[v1.0.7]: https://github.com/bovender/imapcli/releases/tag/v1.0.7
|
71
|
+
[v1.0.5]: https://github.com/bovender/imapcli/releases/tag/v1.0.5
|
data/Dockerfile
CHANGED
@@ -1,14 +1,17 @@
|
|
1
1
|
FROM ruby:alpine
|
2
|
-
LABEL maintainer=bovender@bovender.de
|
3
|
-
LABEL description="Command-line tool to query IMAP servers."
|
2
|
+
LABEL maintainer="bovender@bovender.de"
|
3
|
+
LABEL description="Command-line tool to query IMAP servers, collect stats etc."
|
4
4
|
|
5
5
|
WORKDIR /
|
6
|
+
ADD . /imapcli
|
6
7
|
RUN apk add --no-cache git build-base && \
|
7
|
-
|
8
|
+
gem update --system && \
|
8
9
|
cd imapcli && \
|
9
|
-
bundle && \
|
10
|
+
# bundle config set --local without development test && \
|
11
|
+
bundle install && \
|
10
12
|
apk del build-base && \
|
11
13
|
rm -rf /var/cache/apk/*
|
12
14
|
|
13
15
|
WORKDIR /imapcli
|
14
|
-
ENTRYPOINT ["
|
16
|
+
ENTRYPOINT ["exe/imapcli"]
|
17
|
+
|
data/Gemfile
CHANGED
@@ -1,10 +1,19 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
3
4
|
|
4
5
|
gemspec
|
5
6
|
|
6
|
-
group :test do
|
7
|
-
gem '
|
8
|
-
gem 'pry'
|
7
|
+
group :development, :test do
|
8
|
+
gem 'debug'
|
9
9
|
gem 'guard-rspec'
|
10
|
+
gem 'pry'
|
11
|
+
gem 'rake'
|
12
|
+
gem 'rdoc'
|
13
|
+
gem 'rspec'
|
14
|
+
gem 'rubocop'
|
15
|
+
gem 'rubocop-performance'
|
16
|
+
gem 'rubocop-rake'
|
17
|
+
gem 'rubocop-rspec'
|
18
|
+
gem 'simplecov'
|
10
19
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,34 +1,74 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
imapcli (1.0.
|
4
|
+
imapcli (1.0.7)
|
5
|
+
activesupport (~> 8.0)
|
6
|
+
csv
|
5
7
|
descriptive_statistics (~> 2.5)
|
6
|
-
dotenv (~>
|
7
|
-
|
8
|
-
|
9
|
-
tty-progressbar (~> 0.
|
10
|
-
tty-prompt (~> 0.
|
11
|
-
tty-table (~> 0.
|
8
|
+
dotenv (~> 3.1)
|
9
|
+
gli (~> 2.22)
|
10
|
+
net-imap
|
11
|
+
tty-progressbar (~> 0.18)
|
12
|
+
tty-prompt (~> 0.23)
|
13
|
+
tty-table (~> 0.12)
|
14
|
+
zeitwerk (~> 2.7.0)
|
12
15
|
|
13
16
|
GEM
|
14
17
|
remote: https://rubygems.org/
|
15
18
|
specs:
|
16
|
-
|
19
|
+
activesupport (8.0.1)
|
20
|
+
base64
|
21
|
+
benchmark (>= 0.3)
|
22
|
+
bigdecimal
|
23
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
24
|
+
connection_pool (>= 2.2.5)
|
25
|
+
drb
|
26
|
+
i18n (>= 1.6, < 2)
|
27
|
+
logger (>= 1.4.2)
|
28
|
+
minitest (>= 5.1)
|
29
|
+
securerandom (>= 0.3)
|
30
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
31
|
+
uri (>= 0.13.1)
|
32
|
+
ast (2.4.2)
|
33
|
+
base64 (0.2.0)
|
34
|
+
benchmark (0.4.0)
|
35
|
+
bigdecimal (3.1.9)
|
36
|
+
coderay (1.1.3)
|
37
|
+
concurrent-ruby (1.3.5)
|
38
|
+
connection_pool (2.5.0)
|
39
|
+
csv (3.3.2)
|
40
|
+
date (3.4.1)
|
41
|
+
debug (1.10.0)
|
42
|
+
irb (~> 1.10)
|
43
|
+
reline (>= 0.3.8)
|
17
44
|
descriptive_statistics (2.5.1)
|
18
|
-
diff-lcs (1.
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
45
|
+
diff-lcs (1.6.0)
|
46
|
+
docile (1.4.1)
|
47
|
+
dotenv (3.1.7)
|
48
|
+
drb (2.2.1)
|
49
|
+
ffi (1.17.1)
|
50
|
+
ffi (1.17.1-aarch64-linux-gnu)
|
51
|
+
ffi (1.17.1-aarch64-linux-musl)
|
52
|
+
ffi (1.17.1-arm-linux-gnu)
|
53
|
+
ffi (1.17.1-arm-linux-musl)
|
54
|
+
ffi (1.17.1-arm64-darwin)
|
55
|
+
ffi (1.17.1-x86-linux-gnu)
|
56
|
+
ffi (1.17.1-x86-linux-musl)
|
57
|
+
ffi (1.17.1-x86_64-darwin)
|
58
|
+
ffi (1.17.1-x86_64-linux-gnu)
|
59
|
+
ffi (1.17.1-x86_64-linux-musl)
|
60
|
+
formatador (1.1.0)
|
61
|
+
gli (2.22.2)
|
62
|
+
ostruct
|
63
|
+
guard (2.19.1)
|
26
64
|
formatador (>= 0.2.4)
|
27
65
|
listen (>= 2.7, < 4.0)
|
66
|
+
logger (~> 1.6)
|
28
67
|
lumberjack (>= 1.0.12, < 2.0)
|
29
68
|
nenv (~> 0.1)
|
30
69
|
notiffany (~> 0.0)
|
31
|
-
|
70
|
+
ostruct (~> 0.6)
|
71
|
+
pry (>= 0.13.0)
|
32
72
|
shellany (~> 0.0)
|
33
73
|
thor (>= 0.18.1)
|
34
74
|
guard-compat (1.2.1)
|
@@ -36,83 +76,165 @@ GEM
|
|
36
76
|
guard (~> 2.1)
|
37
77
|
guard-compat (~> 1.1)
|
38
78
|
rspec (>= 2.99.0, < 4.0)
|
39
|
-
|
79
|
+
i18n (1.14.7)
|
80
|
+
concurrent-ruby (~> 1.0)
|
81
|
+
io-console (0.8.0)
|
82
|
+
irb (1.15.1)
|
83
|
+
pp (>= 0.6.0)
|
84
|
+
rdoc (>= 4.0.0)
|
85
|
+
reline (>= 0.4.2)
|
86
|
+
json (2.10.1)
|
87
|
+
language_server-protocol (3.17.0.4)
|
88
|
+
lint_roller (1.1.0)
|
89
|
+
listen (3.9.0)
|
40
90
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
41
91
|
rb-inotify (~> 0.9, >= 0.9.10)
|
42
|
-
|
43
|
-
|
44
|
-
|
92
|
+
logger (1.6.6)
|
93
|
+
lumberjack (1.2.10)
|
94
|
+
method_source (1.1.0)
|
95
|
+
minitest (5.25.4)
|
45
96
|
nenv (0.3.0)
|
97
|
+
net-imap (0.5.6)
|
98
|
+
date
|
99
|
+
net-protocol
|
100
|
+
net-protocol (0.2.2)
|
101
|
+
timeout
|
46
102
|
notiffany (0.1.3)
|
47
103
|
nenv (~> 0.1)
|
48
104
|
shellany (~> 0.0)
|
49
|
-
|
50
|
-
|
105
|
+
ostruct (0.6.1)
|
106
|
+
parallel (1.26.3)
|
107
|
+
parser (3.3.7.1)
|
108
|
+
ast (~> 2.4.1)
|
109
|
+
racc
|
110
|
+
pastel (0.8.0)
|
51
111
|
tty-color (~> 0.5)
|
52
|
-
|
112
|
+
pp (0.6.2)
|
113
|
+
prettyprint
|
114
|
+
prettyprint (0.2.0)
|
115
|
+
pry (0.15.2)
|
53
116
|
coderay (~> 1.1)
|
54
117
|
method_source (~> 1.0)
|
55
|
-
|
56
|
-
|
57
|
-
|
118
|
+
psych (5.2.3)
|
119
|
+
date
|
120
|
+
stringio
|
121
|
+
racc (1.8.1)
|
122
|
+
rainbow (3.1.1)
|
123
|
+
rake (13.2.1)
|
124
|
+
rb-fsevent (0.11.2)
|
125
|
+
rb-inotify (0.11.1)
|
58
126
|
ffi (~> 1.0)
|
59
|
-
rdoc (
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
rspec
|
65
|
-
rspec-
|
66
|
-
|
127
|
+
rdoc (6.12.0)
|
128
|
+
psych (>= 4.0.0)
|
129
|
+
regexp_parser (2.10.0)
|
130
|
+
reline (0.6.0)
|
131
|
+
io-console (~> 0.5)
|
132
|
+
rspec (3.13.0)
|
133
|
+
rspec-core (~> 3.13.0)
|
134
|
+
rspec-expectations (~> 3.13.0)
|
135
|
+
rspec-mocks (~> 3.13.0)
|
136
|
+
rspec-core (3.13.3)
|
137
|
+
rspec-support (~> 3.13.0)
|
138
|
+
rspec-expectations (3.13.3)
|
67
139
|
diff-lcs (>= 1.2.0, < 2.0)
|
68
|
-
rspec-support (~> 3.
|
69
|
-
rspec-mocks (3.
|
140
|
+
rspec-support (~> 3.13.0)
|
141
|
+
rspec-mocks (3.13.2)
|
70
142
|
diff-lcs (>= 1.2.0, < 2.0)
|
71
|
-
rspec-support (~> 3.
|
72
|
-
rspec-support (3.
|
143
|
+
rspec-support (~> 3.13.0)
|
144
|
+
rspec-support (3.13.2)
|
145
|
+
rubocop (1.73.2)
|
146
|
+
json (~> 2.3)
|
147
|
+
language_server-protocol (~> 3.17.0.2)
|
148
|
+
lint_roller (~> 1.1.0)
|
149
|
+
parallel (~> 1.10)
|
150
|
+
parser (>= 3.3.0.2)
|
151
|
+
rainbow (>= 2.2.2, < 4.0)
|
152
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
153
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
154
|
+
ruby-progressbar (~> 1.7)
|
155
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
156
|
+
rubocop-ast (1.38.1)
|
157
|
+
parser (>= 3.3.1.0)
|
158
|
+
rubocop-performance (1.24.0)
|
159
|
+
lint_roller (~> 1.1)
|
160
|
+
rubocop (>= 1.72.1, < 2.0)
|
161
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
162
|
+
rubocop-rake (0.7.1)
|
163
|
+
lint_roller (~> 1.1)
|
164
|
+
rubocop (>= 1.72.1)
|
165
|
+
rubocop-rspec (3.5.0)
|
166
|
+
lint_roller (~> 1.1)
|
167
|
+
rubocop (~> 1.72, >= 1.72.1)
|
168
|
+
ruby-progressbar (1.13.0)
|
169
|
+
securerandom (0.4.1)
|
73
170
|
shellany (0.0.1)
|
74
|
-
|
75
|
-
|
76
|
-
|
171
|
+
simplecov (0.22.0)
|
172
|
+
docile (~> 1.1)
|
173
|
+
simplecov-html (~> 0.11)
|
174
|
+
simplecov_json_formatter (~> 0.1)
|
175
|
+
simplecov-html (0.13.1)
|
176
|
+
simplecov_json_formatter (0.1.4)
|
177
|
+
stringio (3.1.5)
|
178
|
+
strings (0.2.1)
|
179
|
+
strings-ansi (~> 0.2)
|
180
|
+
unicode-display_width (>= 1.5, < 3.0)
|
77
181
|
unicode_utils (~> 1.4)
|
78
|
-
strings-ansi (0.
|
79
|
-
thor (1.
|
80
|
-
|
182
|
+
strings-ansi (0.2.0)
|
183
|
+
thor (1.3.2)
|
184
|
+
timeout (0.4.3)
|
185
|
+
tty-color (0.6.0)
|
81
186
|
tty-cursor (0.7.1)
|
82
|
-
tty-progressbar (0.
|
83
|
-
strings-ansi (~> 0.
|
187
|
+
tty-progressbar (0.18.3)
|
188
|
+
strings-ansi (~> 0.2)
|
84
189
|
tty-cursor (~> 0.7)
|
85
|
-
tty-screen (~> 0.
|
86
|
-
unicode-display_width (
|
87
|
-
tty-prompt (0.
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
tty-reader (0.7.0)
|
190
|
+
tty-screen (~> 0.8)
|
191
|
+
unicode-display_width (>= 1.6, < 3.0)
|
192
|
+
tty-prompt (0.23.1)
|
193
|
+
pastel (~> 0.8)
|
194
|
+
tty-reader (~> 0.8)
|
195
|
+
tty-reader (0.9.0)
|
92
196
|
tty-cursor (~> 0.7)
|
93
|
-
tty-screen (~> 0.
|
94
|
-
wisper (~> 2.0
|
95
|
-
tty-screen (0.
|
96
|
-
tty-table (0.
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
unicode-display_width (
|
197
|
+
tty-screen (~> 0.8)
|
198
|
+
wisper (~> 2.0)
|
199
|
+
tty-screen (0.8.2)
|
200
|
+
tty-table (0.12.0)
|
201
|
+
pastel (~> 0.8)
|
202
|
+
strings (~> 0.2.0)
|
203
|
+
tty-screen (~> 0.8)
|
204
|
+
tzinfo (2.0.6)
|
205
|
+
concurrent-ruby (~> 1.0)
|
206
|
+
unicode-display_width (2.6.0)
|
103
207
|
unicode_utils (1.4.0)
|
208
|
+
uri (1.0.3)
|
104
209
|
wisper (2.0.1)
|
210
|
+
zeitwerk (2.7.2)
|
105
211
|
|
106
212
|
PLATFORMS
|
213
|
+
aarch64-linux-gnu
|
214
|
+
aarch64-linux-musl
|
215
|
+
arm-linux-gnu
|
216
|
+
arm-linux-musl
|
217
|
+
arm64-darwin
|
107
218
|
ruby
|
219
|
+
x86-linux-gnu
|
220
|
+
x86-linux-musl
|
221
|
+
x86_64-darwin
|
222
|
+
x86_64-linux-gnu
|
223
|
+
x86_64-linux-musl
|
108
224
|
|
109
225
|
DEPENDENCIES
|
226
|
+
debug
|
110
227
|
guard-rspec
|
111
228
|
imapcli!
|
112
229
|
pry
|
113
|
-
rake
|
114
|
-
rdoc
|
230
|
+
rake
|
231
|
+
rdoc
|
115
232
|
rspec
|
233
|
+
rubocop
|
234
|
+
rubocop-performance
|
235
|
+
rubocop-rake
|
236
|
+
rubocop-rspec
|
237
|
+
simplecov
|
116
238
|
|
117
239
|
BUNDLED WITH
|
118
|
-
|
240
|
+
2.5.22
|