Giter Site home page Giter Site logo

Is this the correct behavior ? about commander HOT 4 CLOSED

tj avatar tj commented on June 9, 2024
Is this the correct behavior ?

from commander.

Comments (4)

ggilder avatar ggilder commented on June 9, 2024

Hi, I believe that's actually related to the underlying behavior of OptionParser. What I think you want to do is set up the option like this:

c.option '--[no-]some-switch', 'Some switch that does something'

OptionParser will then correctly parse "--some-switch" as some_switch = true, and "--no-some-switch" as some_switch = false.

Let me know if that solves the issue for you... we could probably also add something about that to the documentation to make it more clear.

-Gabriel

from commander.

hrbg avatar hrbg commented on June 9, 2024

Hi Gabriel:

First thanks for your rapid response

This is a problem of what I expected the gem should do, and what it really does.

For me is really weird that if I run something like this

$ test testme --no-foo-bar # => options.no_foo_bar is false
and then I do
$ test testme --foo-bar # => options.foo_bar is true

I expected that the return value were true if you call the option and false or nil if you don't call the option

About your example. In my case I don't need both options --some-switch and --no-some-switch I simply need the --no-* option

from commander.

ggilder avatar ggilder commented on June 9, 2024

I see - I definitely understand why that is a little confusing. However that is the behavior of OptionParser (which is part of the Ruby standard library) - it reacts a different way to options that start with "no-". Because that's part of the Ruby standard library, any Ruby command-line tool would parse that type of option the same way... so I feel like it's not really up to commander to change this behavior.

In your case, if you only need the "--no-*" option, I guess you could just test if it's false vs. nil.

Hope that helps!

from commander.

hrbg avatar hrbg commented on June 9, 2024

Yeap I was afraid of false vs nil. thanks Gabriel

from commander.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.