You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following somewhat unexpected behaviour occurs:
example start --opt=one # ARG: nil / OPT: "one"
example start --opt=three # ERROR: was called with arguments "--opt=three"
example start one # ARG: "one" / OPT: nil
example start three # ARG: "three" / OPT: nil <-- OOPS
The last one should also result in an error IMO.
My environment
Affects my production application: NO (but soon :-)
Ruby version: 3.2
OS: macOS Ventura
The text was updated successfully, but these errors were encountered:
Describe the bug
Given the following
example
:The following somewhat unexpected behaviour occurs:
The last one should also result in an error IMO.
My environment
The text was updated successfully, but these errors were encountered: