GithubHelp home page GithubHelp logo

Comments (3)

leejarvis avatar leejarvis commented on June 6, 2024

Are you sure that's the exact script you're using? Because you haven't told Slop that :server takes an argument, so setting a default seems a little pointless. Anyway, with the same script:

slop = Slop.new do
  on :d, :dev, 'Development-mode'
  on :s, :server, 'Start server', default: 3000
end

slop.parse %w[ -s ];    p slop.to_hash # {:dev=>nil, :server=>true}
slop.parse %w[ -d -s ]; p slop.to_hash # {:dev=>true, :server=>true}
slop.parse %w[ -s -d ]; p slop.to_hash # {:dev=>true, :server=>true}

Now, if you tell Slop that server takes an argument, it'll raise a MissingArgumentError on your first example.

from slop.

budu avatar budu commented on June 6, 2024

I forgot to mention my use case! What I want is the :server option to
take an optional argument which is the port the server shall run on, if not
specified the default should be 3000. That use case might not fit Slop, but
there's an easy work around: as zero get set it's quite simple to add a
check for it.

On Mon, Dec 12, 2011 at 5:00 AM, Lee Jarvis <
[email protected]

wrote:

Are you sure that's the exact script you're using? Because you haven't
told Slop that :server takes an argument, so setting a default seems a
little pointless. Anyway, with the same script:

slop = Slop.new do
 on :d, :dev, 'Development-mode'
 on :s, :server, 'Start server', default: 3000
end

slop.parse %w[ -s ];    p slop.to_hash # {:dev=>nil, :server=>true}
slop.parse %w[ -d -s ]; p slop.to_hash # {:dev=>true, :server=>true}
slop.parse %w[ -s -d ]; p slop.to_hash # {:dev=>true, :server=>true}

Now, if you tell Slop that server takes an argument, it'll raise a
MissingArgumentError on your first example.


Reply to this email directly or view it on GitHub:
#41 (comment)

from slop.

leejarvis avatar leejarvis commented on June 6, 2024

You want the :optional flag, which tells Slop this option takes an optional argument:

slop = Slop.new do
  on :s, :server, 'Start server', optional: true, default: 3000
end

slop.parse %w[ -s ];     p slop.to_hash # {:dev=>nil, :server=>3000}
slop.parse %w[ -s 2000]; p slop.to_hash # {:dev=>nil, :server=>"2000"}

If you want Slop to cast the argument to an Integer, use as: Integer

from slop.

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.