mailmate 1.0.0 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d762c124b353823c34d4b87eb5748727ed2901a507f8bc67a0d74f22b1ab1350
4
- data.tar.gz: c02381fd0d81be1e8793d85d3d838d40378bf2e99bc4d96f82405144171a73ed
3
+ metadata.gz: b986acdac48e1c98c6cc80ae0cc1686af00161a5de3cc17b0946ea09c43b17e1
4
+ data.tar.gz: 6867d4736f7c4118ea775c60b108a36dc76a5234312b20a36cb5c60070233712
5
5
  SHA512:
6
- metadata.gz: cf2901c2df5341834cdcabeed160b33ea4d797c36cdaf24ee14ce1f48020f3a34ac8ff37f5c06a29f659ff486246838b575f73e5cf34e2fae0e986a64949650e
7
- data.tar.gz: bf8f8e7fc3944a32b279a7ac8448def35020a430c38bad95f8f08d63e4e67d9eeef08ddb98f6775b0ba1b428fc6c20e93f27379833e73de28dd6425788158e07
6
+ metadata.gz: 45d6fc1c66f4549fdf14a899bdba83d1b7d0510b5a20e9469e75f44d92e8b5285bd4cba548a2524d9561831cd34ee64cf3fe3239829afe8b4dc19aa27e4cdbda
7
+ data.tar.gz: 7b88d5bb8668614368c969d0e6ba10f14a444594b4fe55fdf6dc14bf536e35b29c8845818bff44b65f880c4c5a724d551b245c23c4f3ee56d78247043da1af9c
data/README.md CHANGED
@@ -60,6 +60,10 @@ mmopen 'message://%3Cabc%40example.com%3E'
60
60
 
61
61
  # Print the mid: URL instead of opening it (useful in pipelines)
62
62
  mmopen 183715 --print
63
+
64
+ # Spawn the viewer in the background — MailMate stays where it is and
65
+ # your keyboard focus is not stolen. Useful when scripting / cross-app.
66
+ mmopen 183715 --background # also: -g
63
67
  ```
64
68
 
65
69
  ### `mm-mailboxes` — list accounts and mailboxes
@@ -113,6 +117,11 @@ mm-modify 183715 archive --dry-run
113
117
 
114
118
  # Verify the new flags after acting
115
119
  mm-modify 183715 read --verify
120
+
121
+ # As of 1.2.0, `--verify` works in `--dry-run` mode too — pair them as a
122
+ # post-hoc state probe (run the action first, then re-run with --dry-run
123
+ # --verify to confirm the change took effect).
124
+ mm-modify 183715 read --dry-run --verify
116
125
  ```
117
126
 
118
127
  **Tip — batch your actions.** Doing all related changes in **one** `mm-modify` invocation is still worthwhile: one open/close cycle instead of two, and the chain runs deterministically without you having to think about ordering. Splitting is safe — `path_for` falls back to a filesystem glob if MailMate's `#source` index is briefly stale after a fast-move — just slower than batching.
@@ -148,54 +157,116 @@ The `mm` prefix is for tab completion: typing `mm<tab>` in a shell lists every c
148
157
 
149
158
  A few rough edges to be aware of:
150
159
 
151
- 1. **Body search speed depends on MailMate's body-index coverage; everything else is fully index-driven.** Header-based filters (`f`/`t`/`c`/`s`/`a`/`T`/`K`/`d`) and every output column (subject, from, to, cc, date, tags, flags, …) read directly from MailMate's binary header indexes under `Database.noindex/Headers/`. No `.eml` is opened for those queries — performance is in the same ballpark as MailMate's own UI search (sub-second across large stores).
160
+ 1. **Non-move `mm-modify` actions briefly spawn a MailMate viewer window.** Same-account `move` actions use a fast path a direct `.eml` rename on disk so they're entirely silent. Everything else (`read`, `flag`, `tag`, `archive`, `junk`, `delete`, etc.) drives MailMate's URL handler: each invocation opens a message-viewer window via the `mid:` URL in the background, runs AppleScript key-binding selectors against it, then closes the window.
152
161
 
153
- Body queries (`b <term>`, a bare term that falls through to `:message_or_body`, or explicit `m <term>` without `--headers-only`) check MailMate's `#unquoted` and `#quoted` body indexes. **Default behavior matches MailMate's UI body search** only messages MailMate has body-indexed are searched. Sub-second on any archive size; the catch is that MailMate populates those indexes lazily (typically when you view or search messages in its UI), so a search may miss content in messages MailMate hasn't yet indexed. Coverage varies by user: a fresh install has a handful indexed; a heavy MailMate-search user has most.
162
+ **As of 1.2.0 this runs in the background.** MailMate is not brought to the foreground, your keyboard focus stays in whatever app you were using, and you can keep workingeven during bulk loops. The viewer windows still appear briefly in MailMate's own window list before closing, but they don't take over your screen. The previous behavior (full-screen takeover, close-keystroke landing on the wrong window) is gone.
154
163
 
155
- Pass `--all` to fall back to reading and parsing the `.eml` on disk for messages without an index record. This finds everything but takes tens of seconds to minutes on large archives. Use `--all` when you need an exhaustive answer; stick with the default when you want a predictable-fast one.
164
+ Two residual caveats:
165
+ - **Don't bring MailMate to the foreground during a run.** If you click into MailMate or Cmd-Tab to it while `mm-modify` is mid-flight, MailMate's responder chain shifts and subsequent perform-selectors may misbehave. Wait for the run to finish.
166
+ - **MailMate must be running.** See #3.
156
167
 
157
- 2. **Non-move `mm-modify` actions still take over the UI.** Same-account `move` actions use a fast path — a direct `.eml` rename on disk — so they're silent and don't activate MailMate. Everything else (`read`, `flag`, `tag`, `archive`, `junk`, `delete`, etc.) still drives MailMate's UI: each invocation opens a message-viewer window via the `mid:` URL, runs AppleScript key-binding selectors against it, then closes the window. Two consequences:
158
- - **Focus is stolen.** When the `mid:` URL fires, macOS brings MailMate forward and the spawned message-viewer window takes keyboard focus. Anything you were typing into another app goes to MailMate instead.
159
- - **The close at the end can close the wrong window.** `mm-modify` ends by sending the standard "close window" keystroke. If focus has drifted (or another app's window has come forward in the meantime), that keystroke lands on **your** window — your editor, your browser tab — not MailMate's viewer.
168
+ The `--keep-window` flag leaves the spawned viewers open if you want to inspect them. Batch multiple actions into one `mm-modify` invocation when you can they share a single open/close cycle (or skip it entirely for pure-move).
160
169
 
161
- For one-off changes this is just annoying; for a loop of hundreds of messages it makes the machine unusable while it runs. Batch multiple actions into one `mm-modify` invocation when you can they share a single open/close cycle (or skip it entirely for pure-move). The `--keep-window` flag avoids the close-keystroke entirely if you don't mind cleaning up viewers manually.
170
+ 2. **`eml-id` is machine-local; prefer `Message-ID:`.** The integer eml-id (also shown as MailMate's "Msg ID" column) is just the filename of the `.eml` on disk and differs on every install — copy/pasting an eml-id from your desktop to your laptop will refer to a different message (or none at all). For anything you want to keep, store the RFC `Message-ID:` header (which `mmmessage` prints) and pass that to the CLIs. The `mid:%3C<message-id>%3E` URL scheme works portably for the same reason.
162
171
 
163
- 3. **`eml-id` is machine-local; prefer `Message-ID:`.** The integer eml-id (also shown as MailMate's "Msg ID" column) is just the filename of the `.eml` on disk and differs on every install copy/pasting an eml-id from your desktop to your laptop will refer to a different message (or none at all). For anything you want to keep, store the RFC `Message-ID:` header (which `mmmessage` prints) and pass that to the CLIs. The `mid:%3C<message-id>%3E` URL scheme works portably for the same reason.
172
+ 3. **MailMate must be running.** Anything that goes through `mm-modify` requires MailMate open and unblocked by modal dialogs. `mm-send` likewise needs MailMate running`emate mailto` opens a draft window in the running MailMate process, so without MailMate up there's nowhere for the draft to land (this is true with or without `--send-now`). Headless / unattended use isn't supported.
164
173
 
165
- 4. **MailMate must be running.** Anything that goes through `mm-modify` requires MailMate open and unblocked by modal dialogs. `mm-send` likewise needs MailMate running `emate mailto` opens a draft window in the running MailMate process, so without MailMate up there's nowhere for the draft to land (this is true with or without `--send-now`). Headless / unattended use isn't supported.
166
-
167
- 5. **Single-account `mm-send` defaults.** `mm-send` passes flags straight through to `emate mailto`. If you have multiple identities configured in MailMate and don't pass `-f`, MailMate picks the default identity — there's no opinionated multi-account routing in the wrapper.
174
+ 4. **Single-account `mm-send` defaults.** `mm-send` passes flags straight through to `emate mailto`. If you have multiple identities configured in MailMate and don't pass `-f`, MailMate picks the default identity there's no opinionated multi-account routing in the wrapper.
168
175
 
169
176
  ## Status
170
177
 
171
- Pre-1.0 (0.x). Breaking changes allowed without version bumps. See [`docs/roadmap/Mailmate gem.md`](../claude/people/docs/roadmap/Mailmate%20gem.md) in the sibling `people` repo for the design history and remaining work.
178
+ 1.2.0 — `mm-modify` no longer brings MailMate to the foreground and is roughly 8× faster on single-action invocations. Internally: the open call uses `open -g -a MailMate <url>` to keep MailMate in the background, and the fixed `--settle` sleeps are replaced by active waits (polling for the spawned viewer window to appear). `mmopen` gains a `--background` / `-g` flag for ad-hoc use. `mm-modify --verify` now works in `--dry-run` mode as a post-hoc state probe. `--settle` is preserved for backward compat; it now caps the active-wait timeout rather than fixing sleep duration.
179
+
180
+ 1.1.0 — `reverse_markdown` (and its transitive `nokogiri` dep) is now opt-in rather than auto-installed. Run `gem install reverse_markdown` if you want `mmmessage --markdown`; everything else is unchanged.
181
+
182
+ 1.0.0 — initial public release; API stable from this point. Breaking changes bump the major version going forward.
172
183
 
173
184
  ## Install
174
185
 
186
+ ### Requirements
187
+
188
+ - **macOS** with **MailMate** installed (and running, for any command that drives the UI or sends mail).
189
+ - **Ruby ≥ 3.0**.
190
+ - No third-party CLI tools — the gem only shells out to macOS-bundled `plutil`, `osascript`, and `open`, plus MailMate's bundled `emate`.
191
+
175
192
  ```bash
176
193
  gem install mailmate
177
194
  ```
178
195
 
179
- Then bootstrap your config:
196
+ Then optionally bootstrap your config (will happen automatically on first invocation of any command from an interactive shell if it hasn't been run before):
180
197
 
181
198
  ```bash
182
199
  mmdiscover
183
200
  ```
184
201
 
185
- `mmdiscover` reads MailMate's `Sources.plist` and `Identities.plist`, shows you the accounts and addresses it found, and offers to write `~/.config/mailmate/config.yml` from them. It also writes `~/.config/mailmate/bundle_loader.rb` for MailMate bundles.
202
+ `mmdiscover` reads MailMate's `Sources.plist` and `Identities.plist`, shows you the accounts and addresses it found, and offers to write `~/.config/mailmate/config.yml` from them. It also writes `~/.config/mailmate/bundle_loader.rb` for MailMate bundles. Running it explicitly is only needed in non-TTY contexts (cron jobs, MCP servers) — there, the gem falls back to built-in defaults and warns once.
203
+
204
+ ### Optional: `mmmessage --markdown`
205
+
206
+ **On the vast majority of Ruby setups (stock `arm64-darwin` or `x86_64-darwin` Ruby) this step is a no-op — nokogiri ships a precompiled binary, you can skip the rest of this section and move on.** Keep reading only if your `gem install` actually fails.
207
+
208
+ `mmmessage --markdown` renders HTML-only message bodies as readable markdown. It needs the `reverse_markdown` gem, which has `nokogiri` as a transitive dependency:
209
+
210
+ ```bash
211
+ gem install reverse_markdown
212
+ ```
213
+
214
+ That single command pulls `nokogiri` in automatically — no separate `gem install nokogiri` step. This is kept out of the base install because nokogiri ships a native extension. On Ruby/platform combinations without a precompiled match nokogiri falls back to compiling from source — it vendors its own libxml2/libxslt, but it does need a C compiler, which on macOS means Xcode Command Line Tools (`xcode-select --install`). If `gem install reverse_markdown` fails, that's almost certainly the cause.
215
+
216
+ If you never use `--markdown`, you never pay any of this. If you do invoke `--markdown` without the gem already being installed (default on most Ruby versions), `mmmessage` exits with a clear install hint.
186
217
 
187
218
  ### From source (development)
188
219
 
189
- If you're hacking on the gem itself, skip `gem install` and put the repo's `exe/` on your `PATH`:
220
+ If you're hacking on the gem itself, skip `gem install` and put the repo's `exe/` on your `PATH`. Clone wherever you keep source repos, then prepend its `exe/` to `PATH` from your shell's rc file (`~/.zshrc`, `~/.bashrc`, etc.):
190
221
 
191
222
  ```bash
192
- git clone <this repo> ~/code/claude/mailmate
193
- echo 'export PATH="$HOME/code/claude/mailmate/exe:$PATH"' >> ~/.zshrc
194
- source ~/.zshrc
223
+ git clone https://github.com/brianmd/mailmate.git
224
+ cd mailmate
225
+
226
+ # In your shell rc file, add (adjust the path to wherever you cloned):
227
+ # export PATH="/absolute/path/to/mailmate/exe:$PATH"
228
+ # Then reload the shell (open a new tab, or `source` the rc file).
195
229
  ```
196
230
 
197
231
  Then `mmdiscover` as above.
198
232
 
233
+ ### MCP server
234
+
235
+ The gem also ships an MCP server (`exe/mailmate-mcp`) that exposes the same surface to AI assistants as JSON-RPC tools: `search`, `message`, `modify`, `send`, `open`, `list_mailboxes`, `list_tags`, `resolve_id`. After `gem install mailmate`, `mailmate-mcp` is on your `PATH`.
236
+
237
+ #### Claude Code (global, all projects)
238
+
239
+ ```bash
240
+ claude mcp add --scope user mailmate "$(which mailmate-mcp)"
241
+ ```
242
+
243
+ Or add manually to `~/.claude.json` under `"mcpServers"`:
244
+
245
+ ```json
246
+ "mailmate": {
247
+ "type": "stdio",
248
+ "command": "/absolute/path/to/mailmate-mcp",
249
+ "args": [],
250
+ "env": {}
251
+ }
252
+ ```
253
+
254
+ #### Claude Desktop
255
+
256
+ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
257
+
258
+ ```json
259
+ {
260
+ "mcpServers": {
261
+ "mailmate": {
262
+ "command": "/absolute/path/to/mailmate-mcp"
263
+ }
264
+ }
265
+ }
266
+ ```
267
+
268
+ Restart Claude Desktop after any change to server code or config.
269
+
199
270
  ## Commands
200
271
 
201
272
  | Command | What it does |
@@ -32,13 +32,20 @@ module Mailmate
32
32
  end
33
33
 
34
34
  # Open a URL in MailMate (used for `mid:` URLs to select a message).
35
+ # Uses `open -g -a MailMate` so the URL is dispatched to MailMate's URL
36
+ # handler without bringing MailMate to the foreground — keeping the
37
+ # user's keyboard focus where it was. The viewer window is still spawned
38
+ # for `mid:` URLs. The AppleScript-native alternative
39
+ # (`tell application "MailMate" to open location`) was tried but is
40
+ # synchronous and can hang on `mid:` URLs while MailMate processes the
41
+ # spawn — `open -g` is asynchronous and avoids the wait.
35
42
  def open_url(url)
36
43
  Mailmate::PlatformError.check_darwin!(component: "AppleScriptDriver") unless dry_run
37
44
  if dry_run
38
- @output.puts "DRY: open -a MailMate #{url.inspect}"
45
+ @output.puts "DRY: open -g -a MailMate #{url.inspect}"
39
46
  return
40
47
  end
41
- success = system("open", "-a", "MailMate", url)
48
+ success = system("/usr/bin/open", "-g", "-a", "MailMate", url)
42
49
  raise Error, "open command failed for #{url}" unless success
43
50
  end
44
51
 
@@ -137,8 +137,15 @@ module Mailmate
137
137
  # long runs of `͏ ` in the output.
138
138
  # 3. Collapse 3+ consecutive blank lines into a single blank line.
139
139
  def html_to_markdown(html)
140
- require "nokogiri"
141
- require "reverse_markdown"
140
+ begin
141
+ require "nokogiri"
142
+ require "reverse_markdown"
143
+ rescue LoadError => e
144
+ warn "mmmessage --markdown needs the reverse_markdown gem (which pulls nokogiri)."
145
+ warn "Install it with: gem install reverse_markdown"
146
+ warn "(underlying: #{e.message})"
147
+ exit 3
148
+ end
142
149
  doc = Nokogiri::HTML(html)
143
150
  doc.css("style, script").remove
144
151
  md = ReverseMarkdown.convert(doc.to_html)
@@ -98,9 +98,9 @@ module Mailmate
98
98
  mute Toggle mute state
99
99
  delete Delete (move to trash)
100
100
  BANNER
101
- o.on("--verify", "After running, print the message's current flags") { opts[:verify] = true }
101
+ o.on("--verify", "Print the message's current flags. Works with --dry-run as a post-hoc 'check state' probe (run the action first, then re-run with --dry-run --verify).") { opts[:verify] = true }
102
102
  o.on("--dry-run", "Print the actions; don't run") { opts[:dry_run] = true }
103
- o.on("--settle SECONDS", Float, "Sleep between operations (default 3.5)") { |s| opts[:settle] = s }
103
+ o.on("--settle SECONDS", Float, "Timeout for waiting for MailMate's viewer window to spawn after open_url (default 3.5)") { |s| opts[:settle] = s }
104
104
  o.on("--keep-window", "Don't close the spawned message-viewer window") { opts[:keep_window] = true }
105
105
  end
106
106
  parser.parse!(argv)
@@ -258,9 +258,15 @@ module Mailmate
258
258
 
259
259
  windows_before = driver.window_ids
260
260
  driver.open_url(mid_url)
261
- sleep(opts[:settle]) unless opts[:dry_run]
262
- new_windows = driver.window_ids - windows_before
263
-
261
+ # Active wait: poll for the new viewer window instead of sleeping a
262
+ # fixed `settle`. Windows typically spawn in 200-500ms; the previous
263
+ # fixed 3.5s sleep was wildly conservative. `--settle` now controls
264
+ # the timeout for this wait rather than the sleep duration.
265
+ new_windows = opts[:dry_run] ? [] : wait_for_new_window(driver, windows_before, timeout: opts[:settle])
266
+
267
+ # Send each action's selector without sleeping between them.
268
+ # AppleEvents queue per-app and process in order, so a subsequent
269
+ # `close window id N` will execute only after `perform` is committed.
264
270
  actions.each do |name, selector, args|
265
271
  case selector
266
272
  when :ensure_flagged, :ensure_not_flagged
@@ -271,16 +277,19 @@ module Mailmate
271
277
  $stdout.puts "#{name}: already #{want ? "flagged" : "not flagged"} — no-op"
272
278
  else
273
279
  driver.perform("toggleFlag:")
274
- sleep(opts[:settle]) unless opts[:dry_run]
275
280
  end
276
281
  else
277
282
  driver.perform(selector, *args)
278
- sleep(opts[:settle]) unless opts[:dry_run]
279
283
  end
280
284
  end
281
285
 
282
- if opts[:verify] && !opts[:dry_run]
283
- sleep(opts[:settle])
286
+ # --verify is now permitted in --dry-run mode so callers can use
287
+ # `mm-modify <id> <any-action> --dry-run --verify` as a post-hoc
288
+ # "what's the current flag state?" probe after a separate action run.
289
+ # In non-dry-run mode, a short fixed wait gives MailMate time to
290
+ # flush #flags before we read it back; in dry-run no wait is needed.
291
+ if opts[:verify]
292
+ sleep(1) unless opts[:dry_run]
284
293
  $stdout.puts "Flags now: #{current_flags(eml_id).inspect}"
285
294
  end
286
295
 
@@ -289,6 +298,20 @@ module Mailmate
289
298
  end
290
299
  end
291
300
 
301
+ # Poll for a new MailMate window appearing in `driver.window_ids` that
302
+ # isn't in `windows_before`. Returns the set of new window IDs, or an
303
+ # empty array if `timeout` elapses without a new window appearing.
304
+ def wait_for_new_window(driver, windows_before, timeout:, poll: 0.05)
305
+ deadline = Time.now + timeout
306
+ loop do
307
+ diff = driver.window_ids - windows_before
308
+ return diff unless diff.empty?
309
+ break if Time.now >= deadline
310
+ sleep(poll)
311
+ end
312
+ []
313
+ end
314
+
292
315
  def current_flags(eml_id)
293
316
  # AppleScript actions write the index asynchronously — bust just the
294
317
  # #flags cache to pick up the latest values without throwing away
@@ -44,26 +44,30 @@ module Mailmate
44
44
  return 0
45
45
  end
46
46
 
47
- system("/usr/bin/open", url)
47
+ cmd = ["/usr/bin/open"]
48
+ cmd << "-g" if opts[:background]
49
+ cmd << url
50
+ system(*cmd)
48
51
  $?.exitstatus
49
52
  end
50
53
 
51
54
  def parse_options(argv)
52
- opts = { print_only: false }
55
+ opts = { print_only: false, background: false }
53
56
  OptionParser.new do |o|
54
- o.banner = "Usage: mmopen <id> [--print]"
57
+ o.banner = "Usage: mmopen <id> [--print] [--background|-g]"
55
58
  o.separator ""
56
59
  o.separator "Open a MailMate message in MailMate's UI. <id> can be a local"
57
60
  o.separator "eml-id, an RFC Message-ID (with or without angle brackets), or"
58
61
  o.separator "a message://… or mid:… URL."
59
62
  o.on("--print", "Print the mid: URL instead of opening it (for piping)") { opts[:print_only] = true }
63
+ o.on("-g", "--background", "Open without bringing MailMate to the foreground") { opts[:background] = true }
60
64
  end.parse!(argv)
61
65
  opts
62
66
  end
63
67
 
64
68
  def usage_error(msg)
65
69
  warn "mmopen: #{msg}"
66
- warn "Usage: mmopen <id> [--print]"
70
+ warn "Usage: mmopen <id> [--print] [--background|-g]"
67
71
  2
68
72
  end
69
73
  end
@@ -200,7 +200,7 @@ module Mailmate
200
200
  o.separator " c <term> cc contains"
201
201
  o.separator " s <term> subject contains"
202
202
  o.separator " a <term> any address header contains"
203
- o.separator " b <term> body contains (slow disables prefilter)"
203
+ o.separator " b <term> body contains (reads MailMate's body indexes; --all for un-indexed too)"
204
204
  o.separator " m <term> common headers OR body (same as bare term)"
205
205
  o.separator " d <date> received date: Nd|Nw|Nm|Ny (relative), or Y, Y-M, Y-M-D"
206
206
  o.separator " T <tag> tag / IMAP keyword contains (K is a synonym)"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Mailmate
4
- VERSION = "1.0.0"
4
+ VERSION = "1.2.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mailmate
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Murphy-Dye
@@ -38,47 +38,47 @@ dependencies:
38
38
  - !ruby/object:Gem::Version
39
39
  version: '3.0'
40
40
  - !ruby/object:Gem::Dependency
41
- name: reverse_markdown
41
+ name: minitest
42
42
  requirement: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '3.0'
47
- type: :runtime
46
+ version: '5.0'
47
+ type: :development
48
48
  prerelease: false
49
49
  version_requirements: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '3.0'
53
+ version: '5.0'
54
54
  - !ruby/object:Gem::Dependency
55
- name: minitest
55
+ name: rake
56
56
  requirement: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '5.0'
60
+ version: '13.0'
61
61
  type: :development
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '5.0'
67
+ version: '13.0'
68
68
  - !ruby/object:Gem::Dependency
69
- name: rake
69
+ name: reverse_markdown
70
70
  requirement: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: '13.0'
74
+ version: '3.0'
75
75
  type: :development
76
76
  prerelease: false
77
77
  version_requirements: !ruby/object:Gem::Requirement
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: '13.0'
81
+ version: '3.0'
82
82
  description: |
83
83
  mailmate is a Ruby library and CLI for working with MailMate's on-disk
84
84
  storage and AppleScript surface. It includes a smart-mailbox filter
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
166
166
  - !ruby/object:Gem::Version
167
167
  version: '0'
168
168
  requirements: []
169
- rubygems_version: 4.0.10
169
+ rubygems_version: 3.6.9
170
170
  specification_version: 4
171
171
  summary: Ruby toolkit for MailMate on macOS — search, read, modify, send, and smart-mailbox
172
172
  evaluation