No commit activity in last 3 years
No release in over 3 years
Yet another options parser. Parses the command-line arguments and parameters. Simple, lightweight with nice DSL declarative approach.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.0.0
>= 2.0.0

Runtime

>= 2.0.0
>= 0.1.0
 Project Readme

YAOP -- Yet Another Options Parser

YAOP parses the command-line for both named (arguments) and unnamed (parameters) options and returns them in hash and array. It's intended to be feature-less, simple and lightweight one. It uses declarative approach. See example:

require "yaop"

options = YAOP::get do
    option "--strip"          # simple presency is enough
    
    options "-l", "--level"   # both of them
    type Integer, 7           # first part, default value 7
    type Integer, 8           # second part, default value 8
    type Integer, 9           # third part, default value 9
end

If command line will be script.rb -l 1 2 --strip "file1.txt" "file2.txt", result will be:

p options.arguments
# will print { "--strip" => true, "-l" => [1, 2, 9], "--level" => [1, 2, 9] }

p options.parameters
# will print ["file1.txt", "file2.txt"]

Be warn, classic syntax like -sl 1 isn't supported.

Contributing

  1. Fork it.
  2. Create a branch (git checkout -b 20101220-my-change).
  3. Commit your changes (git commit -am "Added something").
  4. Push to the branch (git push origin 20101220-my-change).
  5. Create an Issue with a link to your branch.
  6. Enjoy a refreshing Diet Coke and wait.

Copyright

Copyright © 2011-2012 Martin Kozák. See LICENSE.txt for further details.