Class: Rubino::CLI::Commands

Inherits:
Thor
  • Object
show all
Defined in:
lib/rubino/cli/commands.rb

Overview

Main Thor command class. All subcommands are registered here.

Constant Summary collapse

TAGLINE =

One-line description of what rubino IS, surfaced as a top-line tagline in ‘rubino –help` / `rubino help` — Thor’s stock command list opens cold with “Commands:” and never says what the tool does or where to start (F-help). Wrap Thor’s #help to print a tagline above the listing and a “Getting started: run ‘rubino setup`” hint below it, so a brand-new user lands on the first action instead of a bare verb table. Single source of truth lives on the Rubino module (#559) so the help banner and the chat welcome can’t drift into two different taglines.

Rubino::TAGLINE
GETTING_STARTED =
"Getting started: run `rubino setup` to configure a model, " \
"then `rubino chat` (or `rubino \"your prompt\"`)."
HELP_FLAGS =

Help flags recognized on any top-level command (#134).

["--help", "-h"].freeze
HELP_WRAP_COLUMNS =

Wrap subcommand help so ‘chat –help` / `prompt –help` stay within 80 columns (#217). Thor’s stock #print_options lays the flags and their descriptions out in a 2-column table padded to the WIDEST flag — and the boolean variants (‘[–no-x], [–skip-x]`) push that column past 60, so every description row overflowed 80 (the longest hit 137) with no wrapping. Render each option as its flag line followed by the description wrapped + indented on its own line(s) instead: bounded by construction, and it reads cleaner than the ragged padded table.

80
HELP_DESC_INDENT =
6

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.bare_prompt_args(given_args) ⇒ Object

The chat args to run when a BARE invocation is plainly a one-shot PROMPT rather than a command (#483), or nil when it isn’t (leave on command dispatch). ‘default_command :chat` does not forward a bare positional to chat’s prompt arg, so ‘rubino “your prompt”` — the documented one-shot —used to die as “unknown command”. We reroute here, narrowly:

* the leading token must NOT be a known command/subcommand and must NOT
  be a flag (those keep their existing dispatch), and
* the input must be prompt-SHAPED — the leading token contains
  whitespace, OR there are 2+ positional words, OR it ends in `?`/`!`/`.`

so a lone identifier-like word (‘rubino frobnicate`, `rubino setpu`) stays an unknown-command error with its closest-match suggestion (#67, F2). Chat takes a SINGLE positional `[PROMPT]`, so the leading positional words are joined into one prompt token and any trailing flags are appended, giving `[“<joined prompt>”, *flags]`. Returns nil for anything else.



235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# File 'lib/rubino/cli/commands.rb', line 235

def self.bare_prompt_args(given_args)
  args  = Array(given_args).map(&:to_s)
  first = args.first.to_s
  return nil if first.empty?
  return nil if first.start_with?("-")                  # a flag → existing handling
  return nil if first == "help"                         # Thor's help task (handled elsewhere)
  return nil if commands.key?(first.tr("-", "_"))       # a real command/subcommand

  # Split the leading positional run (before the first flag) from any
  # trailing flags: a lone unknown word followed only by flags (`bogus
  # --output-format json`) is a typo'd command, not a prompt — its #327
  # unknown-command envelope must still fire. Two or more positional words
  # IS a prompt (`what is 2+2`).
  positional_words = args.take_while { |a| !a.start_with?("-") }
  trailing_flags   = args.drop(positional_words.size)

  # A LEADING word that is a near-miss of a known command (`confg show` for
  # `config show`, #483) is a TYPO'd command, not a prompt — routing it to
  # chat hid the did-you-mean suggestion. Bail so the unknown-command path
  # fires its closest-match hint (#67/F2). Reuses the SAME SpellChecker as
  # closest_command, so a genuine prompt word (`what`, no near command)
  # still routes to chat.
  return nil if closest_command(first.tr("-", "_"))

  multi_word    = positional_words.size > 1
  has_space     = first.match?(/\s/)
  sentence_like = first.match?(/[?!.]\z/)
  return [positional_words.join(" "), *trailing_flags] if multi_word || has_space || sentence_like

  nil
end

.chat_like_command(given_args) ⇒ Object

The chat-like command an arg list dispatches to (‘chat` or `prompt`), or nil when it isn’t one. A bare invocation (‘rubino “hi”`, `rubino –frobnicate`) falls to the default command (chat); an explicit `rubino prompt …` / `rubino chat …` is named outright. Subcommands and other top-level commands return nil — Thor already rejects unknown flags for those, and only chat/prompt have a positional that swallows a typo.



284
285
286
287
288
289
290
291
# File 'lib/rubino/cli/commands.rb', line 284

def self.chat_like_command(given_args)
  first = Array(given_args).first.to_s
  return first if %w[chat prompt].include?(first)
  # A leading flag / quoted prompt (not a known command) → default command.
  return "chat" if first.start_with?("-") || !commands.key?(first.tr("-", "_"))

  nil
end

.clean_thor_message(error, given_args) ⇒ Object

Normalizes a Thor dispatch/argument error message into rubino’s own voice, so every pre-run failure reads as one clean ‘rubino: <msg>` line instead of mixing Thor’s raw ‘ERROR: …`/`Usage: …` text with our hand-crafted unknown-command/unknown-flag voice (copy-consistency).

* An unknown command (Thor::UndefinedCommandError) becomes
  "unknown command 'X'. Did you mean `setup`? Run `rubino --help`."
  — the closest-match did-you-mean mirrors the in-REPL slash hint (F2),
  replacing Thor's terser "Could not find command … Did you mean? …".
* An argument/usage error (Thor::InvocationError, e.g. a command called
  with stray args/flags) has its internal `ERROR: ` prefix and trailing
  `Usage: …` line stripped, leaving just the plain sentence.

Any other Thor/Configuration error passes through unchanged.



200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# File 'lib/rubino/cli/commands.rb', line 200

def self.clean_thor_message(error, given_args)
  name = Array(given_args).first.to_s
  # Only the TOP-LEVEL unknown command gets rubino's did-you-mean voice. A
  # nested miss (`rubino sessions frobnicate`) also surfaces as an
  # UndefinedCommandError, but `given_args.first` there is the VALID parent
  # ("sessions") — suggesting against the top-level roster would be wrong, so
  # those fall through to Thor's own (cleaned) "Could not find command …".
  if error.is_a?(Thor::UndefinedCommandError) && !commands.key?(name.tr("-", "_"))
    msg = "unknown command '#{name}'."
    if (suggestion = closest_command(name))
      msg += " Did you mean `#{suggestion}`?"
    end
    return "#{msg} Run `rubino --help`."
  end

  # Drop Thor's `ERROR: ` lead and its `Usage: "…"` continuation line(s),
  # keeping the first clean sentence (e.g. the "was called with arguments"
  # line) — never the raw two-line `ERROR:/Usage:` block.
  error.message.to_s.sub(/\AERROR: /, "").split("\nUsage:", 2).first.strip
end

.closest_command(name) ⇒ Object

The closest known top-level command/subcommand to a mistyped name, for the unknown-command did-you-mean (F2). Uses the same stdlib DidYouMean SpellChecker the in-REPL slash hint uses; best-effort (nil on any hiccup).



270
271
272
273
274
275
276
# File 'lib/rubino/cli/commands.rb', line 270

def self.closest_command(name)
  require "did_you_mean"
  dict = commands.keys.map(&:to_s)
  DidYouMean::SpellChecker.new(dictionary: dict).correct(name.to_s).first
rescue StandardError
  nil
end

.default_commandObject

Allow passing prompt directly as default task: rubino “my prompt”



54
55
56
# File 'lib/rubino/cli/commands.rb', line 54

def self.default_command
  :chat
end

.exit_on_failure?Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/rubino/cli/commands.rb', line 16

def self.exit_on_failure?
  true
end

.help(shell, subcommand = false) ⇒ Object

rubocop:disable Style/OptionalBooleanParameter – overrides Thor’s own ‘def help(shell, subcommand = false)`; the positional boolean is Thor’s public signature (instance #help calls it positionally), not ours to change.



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/rubino/cli/commands.rb', line 35

def self.help(shell, subcommand = false)
  # Only decorate the TOP-LEVEL command listing (`rubino --help`), not a
  # per-command help page (`rubino help chat`) — those are dispatched with
  # the command name and handled by super unchanged.
  if subcommand
    super
    return
  end

  shell.say(TAGLINE)
  shell.say
  super
  shell.say(GETTING_STARTED)
  shell.say
end

.json_output_requested?(given_args) ⇒ Boolean

True when the raw CLI args ask for a machine-readable one-shot mode —‘–json`, or `–output-format json|stream-json` (hyphen or underscore, `=`-joined or space-separated). Decided from the raw argv (NOT Thor’s parsed options) because the error we’re reporting can be the very failure that aborted option parsing, so parsed options may be unavailable. Mirrors ChatCommand#json_requested? so the early-error envelope matches the in-command one.

Returns:

  • (Boolean)


384
385
386
387
388
389
390
391
392
393
394
395
396
397
# File 'lib/rubino/cli/commands.rb', line 384

def self.json_output_requested?(given_args)
  args = Array(given_args).map(&:to_s)
  return true if args.include?("--json")

  args.each_with_index do |a, i|
    if ["--output-format", "--output_format"].include?(a)
      val = args[i + 1].to_s.tr("-", "_")
      return true if %w[json stream_json].include?(val)
    elsif (m = a.match(/\A--output[-_]format=(.+)\z/))
      return true if %w[json stream_json].include?(m[1].tr("-", "_"))
    end
  end
  false
end

.known_flag_tokens(command) ⇒ Object

The set of accepted flag spellings for a command — every declared ‘–long`, `–no-long` (booleans), and short `-x` alias — so a typo is caught but a real flag in any spelling is accepted.



328
329
330
331
332
333
334
335
336
337
338
339
340
341
# File 'lib/rubino/cli/commands.rb', line 328

def self.known_flag_tokens(command)
  opts = commands[command]&.options || {}
  # --help/-h and the global --version/-v are always valid spellings; the
  # latter is handled at the top of #start when LEADING, but a non-leading
  # `chat --version` must still fall through to Thor (not be rejected as
  # "unknown"), preserving the pre-F7 dispatch behaviour.
  tokens = HELP_FLAGS + %w[--version -v]
  opts.each_value do |o|
    tokens << "--#{o.name.tr("_", "-")}"
    tokens << "--no-#{o.name.tr("_", "-")}" if o.type == :boolean
    Array(o.aliases).each { |a| tokens << a }
  end
  tokens.uniq
end


410
411
412
413
414
415
416
417
418
419
420
421
# File 'lib/rubino/cli/commands.rb', line 410

def self.print_options(shell, options, group_name = nil)
  return if options.empty?

  shell.say(group_name ? "#{group_name} options:" : "Options:")
  options.reject(&:hide).each do |option|
    shell.say("  #{option.usage(0)}")
    next unless option.description

    wrap_help_description(option.description).each { |line| shell.say(line) }
  end
  shell.say ""
end

.report_early_error(given_args, message, exit_code: 1) ⇒ Object

Surfaces a pre-run error (a Thor dispatch/argument error caught in #start, or any other boot-time failure that escapes a command body) in the invocation’s chosen output format, then exits non-zero (#327). Under –output-format json|stream-json the message becomes the same is_error:true, … envelope ChatCommand#fail_arg! emits for an empty prompt / invalid –output-format, so a json consumer ALWAYS gets a parseable object on stdout; under text it is the clean ‘rubino: <msg>` stderr line. The JSON path is wholly best-effort: an envelope hiccup must never mask the underlying failure, so it falls back to the stderr line.



363
364
365
366
367
368
369
370
371
372
373
374
375
# File 'lib/rubino/cli/commands.rb', line 363

def self.report_early_error(given_args, message, exit_code: 1)
  if json_output_requested?(given_args)
    begin
      $stdout.puts JSON.generate(Output::ResultSerializer.arg_error(message: message))
      $stdout.flush
    rescue StandardError
      warn "rubino: #{message}"
    end
  else
    warn "rubino: #{message}"
  end
  exit(exit_code)
end

.start(given_args = ARGV, config = {}) ⇒ Object

Intercept ‘–version`/`-v` at dispatch (#32). Thor otherwise routes a bare `rubino –version` to the default `chat` task, which treats the flag as a prompt and fails with an API-key error. Handle it here —print the version and exit — before any chat/credential handling.

Likewise intercept ‘rubino <command> –help` (#134): Thor 1.x only maps a LEADING help flag to the help task, so `chat –help`/`prompt –help` used to fall through as an unknown option, become the positional prompt, and start a REAL agent run (provider call + memory writes). Reroute to Thor’s own ‘help <command>` before option parsing. Thor subcommands (config/memory/sessions/jobs) already handle their own `–help` and keep their richer subcommand listing.



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/rubino/cli/commands.rb', line 73

def self.start(given_args = ARGV, config = {})
  if ["--version", "-v"].include?(given_args.first)
    puts "rubino v#{Rubino::VERSION}"
    return
  end

  cmd = given_args.first.to_s.tr("-", "_")
  if given_args.drop(1).intersect?(HELP_FLAGS) && commands.key?(cmd) && !subcommands.include?(cmd)
    return super(["help", cmd], config)
  end

  # Intercept a BARE `help` positional on chat/prompt (#490). `rubino chat
  # help` / `rubino prompt help` otherwise reach ChatCommand with "help" as
  # the prompt, spend a turn, and persist a spurious session row titled
  # "help" that clutters `sessions`/`/sessions`. The user clearly wants the
  # command's help, not a one-shot — reroute to Thor's own `help <command>`
  # before any session is created. (The `--help`/`-h` spellings are already
  # handled just above; this covers the unflagged word.) Only fires when
  # "help" is the SOLE positional, so a genuine prompt that merely starts
  # with the word help — `rubino chat "help me debug this"` — is untouched.
  if %w[chat prompt].include?(cmd) && given_args.drop(1).map(&:to_s) == ["help"]
    return super(["help", cmd], config)
  end

  # Route a BARE prompt-shaped argument to a one-shot chat (#483). The
  # `--help` footer and docs promise `rubino "your prompt"` as the one-shot
  # entry, but Thor's `default_command :chat` does NOT forward a bare
  # positional to chat's prompt arg — `rubino "what is 2+2"` died with
  # "unknown command". Reroute a leading token that is plainly a PROMPT, not
  # a command, to `chat <args>` so it runs one-shot as documented.
  #
  # Disambiguation (keeps did-you-mean / unknown-command intact): only a
  # prompt-SHAPED leading arg is rerouted — one that contains whitespace
  # (`"two words"`), is followed by more positional words (`rubino what is
  # 2+2`), or ends in sentence punctuation. A lone identifier-like token
  # (`rubino frobnicate`, `rubino setpu`) is left on command dispatch so its
  # unknown-command error / closest-match suggestion (#67, F2) still fires.
  # The leading positional words are joined into chat's SINGLE prompt arg
  # (chat takes one positional `[PROMPT]`); trailing flags pass through.
  if (chat_args = bare_prompt_args(given_args))
    return super(["chat", *chat_args], config.merge(debug: true))
  end

  # Reject an unknown LEADING flag before it is swallowed into the prompt
  # (F7). `chat` is the default command, so `rubino --frobnicate …` (or
  # `rubino prompt --frobnicate`) routes to chat/prompt and a TYPO'D flag
  # silently became part of the message text (or an empty-prompt run)
  # instead of erroring. Validate the leading `--flags` of a chat/prompt
  # invocation against that command's declared options here and surface a
  # clean "unknown flag" instead. A legitimate prompt that merely CONTAINS
  # `--` text (`rubino "run git log --oneline"`) is untouched: only a flag
  # in the LEADING run (before the first positional word) is checked.
  if (bad = unknown_leading_flag(given_args))
    report_early_error(given_args, "unknown flag '#{bad}'. Run `rubino #{chat_like_command(given_args)} --help` for valid flags")
  end

  # Force Thor's own `start` to RE-RAISE a Thor::Error (unknown command,
  # bad/malformed flag, ambiguous command, a subcommand's `raise
  # Thor::Error`) instead of swallowing it into a bare stderr line + exit
  # (its default). We catch it below so EVERY dispatch/argument error is
  # surfaced format-aware (#327): a clean stderr line under text, a
  # well-formed JSON error envelope on STDOUT under --output-format
  # json|stream-json — never an empty stdout, and never a raw backtrace.
  super(given_args, config.merge(debug: true))
rescue Interrupt, SignalException # rubocop:disable Lint/ShadowedException -- Interrupt listed for doc value; SignalException is its superclass
  # Final backstop for Ctrl-C / signals that ESCAPED the per-command
  # handlers — e.g. a SECOND Ctrl-C arriving during the interactive REPL's
  # teardown (after its own `rescue Interrupt` already fired), or a bare
  # Interrupt raised deep inside a blocking net/http read on a path the
  # command didn't wrap. Those used to propagate to exe/rubino and dump a
  # raw `net/protocol.rb … wait_readable: Interrupt` backtrace. Exit cleanly
  # at this single chokepoint instead: 130 = the shell convention for a
  # SIGINT-terminated process (128 + signal 2). The per-command paths still
  # do their own graceful cancel first; this only catches the strays so the
  # user never sees a backtrace from pressing Ctrl-C.
  exit(130)
rescue Rubino::Database::BusyError => e
  # Final backstop (#333/#359): a SUSTAINED concurrent-migration lock that
  # outlived the connection retry budget must surface as a clean single
  # line + non-zero exit at this one chokepoint — never a raw Sequel/
  # SQLite backtrace from whichever command happened to touch the DB.
  # (Rubino::Database::BusyError is DEFINED in the always-loaded errors.rb
  # so naming it here can never NameError before the DB is autoloaded —
  # #445-regression fix.)
  warn "rubino: #{e.message}"
  exit(1)
rescue Thor::Error, Rubino::ConfigurationError => e
  # A pre-run error that reached the boot chokepoint:
  #   * Thor::Error — a dispatch/argument failure (Thor::UndefinedCommandError
  #     carrying its own "Did you mean?" suggestion, MalformattedArgumentError
  #     for a bad `--max-turns abc`, a subcommand's `raise Thor::Error`).
  #   * Rubino::ConfigurationError — a source-raised config error, today a
  #     careless RUBINO_HOME pointing at a file / read-only parent (F13,
  #     raised by Rubino.ensure_directories!).
  # Surface it in the format the invocation asked for: under json/stream-json
  # emit the #327 envelope on stdout so automation can parse the failure (the
  # prior behaviour left stdout EMPTY for Thor errors, or leaked a raw Errno
  # backtrace for the home error); otherwise the clean one-line stderr Thor
  # itself would have printed. Never a raw backtrace; exit non-zero.
  report_early_error(given_args, clean_thor_message(e, given_args))
rescue SystemCallError => e
  # A filesystem/OS syscall (Errno::*) that reached the boot chokepoint
  # WITHOUT going through Rubino.ensure_directories!'s file-vs-directory
  # guard — today a `config set`/`config unset` write whose RUBINO_HOME
  # points at an existing file, so Util::AtomicFile.mkdir_p raised a raw
  # ~25-frame fileutils Errno::EEXIST backtrace (MED). Normalize EVERY such
  # Errno here, the same single chokepoint, into the SAME clean one-liner
  # chat/setup already emit (clean_errno_message strips Ruby's internal
  # ` @ <syscall> - <path>` tail): a `rubino: <reason>` stderr line under
  # text, the #327 envelope on stdout under json/stream-json. Never a raw
  # backtrace; exit non-zero. Deliberately NOT broadened to StandardError —
  # only OS-level Errno failures are normalized; a real bug still surfaces.
  report_early_error(given_args, Rubino.clean_errno_message(e.message))
end

.unknown_leading_flag(given_args) ⇒ Object

The first LEADING ‘–flag` of a chat/prompt invocation that isn’t a declared option, or nil (F7). “Leading” = appears before the first POSITIONAL word, so a ‘–`-containing prompt is never misread: once a non-flag token is seen, the rest is the prompt and is not inspected. Value-taking flags consume their following token so `–model foo` doesn’t treat ‘foo` as a positional. Only inspects chat/prompt; other commands return nil (Thor handles their flags).



300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'lib/rubino/cli/commands.rb', line 300

def self.unknown_leading_flag(given_args)
  command = chat_like_command(given_args)
  return nil unless command

  args = Array(given_args).map(&:to_s)
  # Drop the explicit command word when present; for the default-command
  # path the whole list is the chat args.
  args = args.drop(1) if %w[chat prompt].include?(args.first)
  known = known_flag_tokens(command)

  i = 0
  while i < args.size
    tok = args[i]
    break unless tok.start_with?("-") && tok != "-" # first positional ⇒ stop

    flag = tok.split("=", 2).first
    return flag unless known.include?(flag)

    # A known value-flag with a space-separated value consumes the next
    # token so it isn't mistaken for the first positional.
    i += value_flag?(command, flag) && !tok.include?("=") ? 2 : 1
  end
  nil
end

.value_flag?(command, flag) ⇒ Boolean

True when a flag carries a value (so its next token is the value, not a positional). Booleans don’t; everything else does.

Returns:

  • (Boolean)


345
346
347
348
349
350
351
352
# File 'lib/rubino/cli/commands.rb', line 345

def self.value_flag?(command, flag)
  opts = commands[command]&.options || {}
  opt = opts.values.find do |o|
    long = "--#{o.name.tr("_", "-")}"
    long == flag || Array(o.aliases).include?(flag)
  end
  opt && opt.type != :boolean
end

.wrap_help_description(description) ⇒ Object

Greedy word-wrap of a flag description to HELP_WRAP_COLUMNS, each line indented HELP_DESC_INDENT. Wrapped here (not via Thor’s print_wrapped) so the bound is the fixed 80 the spec checks, not the live terminal width. A single word longer than the budget is emitted on its own line rather than dropped.



428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
# File 'lib/rubino/cli/commands.rb', line 428

def self.wrap_help_description(description)
  indent = " " * HELP_DESC_INDENT
  budget = HELP_WRAP_COLUMNS - HELP_DESC_INDENT
  lines  = []
  line   = +""
  description.to_s.split(/\s+/).each do |word|
    if line.empty?
      line << word
    elsif line.length + 1 + word.length <= budget
      line << " " << word
    else
      lines << (indent + line)
      line = +word
    end
  end
  lines << (indent + line) unless line.empty?
  lines
end

Instance Method Details

#chat(prompt = nil) ⇒ Object



512
513
514
515
516
# File 'lib/rubino/cli/commands.rb', line 512

def chat(prompt = nil)
  # Support: rubino chat "prompt" as shorthand for -q
  opts = options.to_h.merge(prompt ? { query: prompt } : {})
  ChatCommand.new(opts).execute
end

#doctorObject



583
584
585
# File 'lib/rubino/cli/commands.rb', line 583

def doctor
  DoctorCommand.new.execute
end

#prompt(*args) ⇒ Object



540
541
542
543
544
# File 'lib/rubino/cli/commands.rb', line 540

def prompt(*args)
  query = args.join(" ")
  opts = options.to_h.merge(query: query)
  ChatCommand.new(opts).execute
end

#serverObject



570
571
572
# File 'lib/rubino/cli/commands.rb', line 570

def server
  ServerCommand.new(options).execute
end

#setupObject



448
449
450
# File 'lib/rubino/cli/commands.rb', line 448

def setup
  SetupCommand.new.execute
end

#tls_certObject



578
579
580
# File 'lib/rubino/cli/commands.rb', line 578

def tls_cert
  $stdout.write(API::TLS.ensure_cert!)
end

#toolsObject



562
563
564
# File 'lib/rubino/cli/commands.rb', line 562

def tools
  ToolsCommand.new.execute
end

#updateObject



593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
# File 'lib/rubino/cli/commands.rb', line 593

def update
  ui = Rubino.ui
  current = Rubino::VERSION

  case Rubino::UpdateCheck.install_method
  when :gem
    ok = system(*Rubino::UpdateCheck.gem_update_command)
    unless ok
      ui.warning("gem update failed. If this is a permission error, re-run the installer or try `gem update --user-install #{Rubino::UpdateCheck::GEM_NAME}`.")
      return
    end
    new_v = Rubino::UpdateCheck.installed_gem_version(Rubino::UpdateCheck::GEM_NAME)
    if new_v && Gem::Version.new(new_v) > Gem::Version.new(current)
      ui.info("rubino is now on v#{new_v} (was v#{current}).")
      ui.status("Restart any running rubino sessions to pick up the new version.")
    else
      ui.info("rubino is already up to date (v#{current}).")
    end
  else
    ui.warning("rubino wasn't installed from RubyGems (built from source / dev checkout).")
    ui.status("Re-run the installer to update:")
    ui.status("  curl -fsSL https://raw.githubusercontent.com/Jhonnyr97/rubino-agent/main/install.sh | bash")
  end
ensure
  # Drop the cached notice so the boot footer doesn't linger after update.
  Rubino::UpdateCheck.clear_cache!
end

#versionObject



588
589
590
# File 'lib/rubino/cli/commands.rb', line 588

def version
  Rubino.ui.info("rubino v#{Rubino::VERSION}")
end