From: Thomas Sawyer Date: 2011-07-10T11:08:42+09:00 Subject: [ruby-core:37944] [Ruby 1.9 - Feature #5010] Add Slop(-like) in stdlib and deprecate current OptionParser API Issue #5010 has been updated by Thomas Sawyer. Would much rather see CLAP(-like) in standard library. http://druwerd.wordpress.com/2010/10/20/clap-command-line-arguments-parsing/ It's so simple. Maybe integrate into Shellwords module. ---------------------------------------- Feature #5010: Add Slop(-like) in stdlib and deprecate current OptionParser API http://redmine.ruby-lang.org/issues/5010 Author: Rodrigo Rosenfeld Rosas Status: Open Priority: Low Assignee: Yukihiro Matsumoto Category: Target version: 2.0 I always found the OptionParser API not as well designed as it could be. I've just found this gem: http://lee.jarvis.co/slop/ Much better API and I think we should integrate it to Ruby 2.0. Take a look at the minimal example shown in OptionParser :
  require 'optparse'

  options = {}
  OptionParser.new do |opts|
    opts.banner = "Usage: example.rb [options]"

    opts.on("-v", "--[no-]verbose", "Run verbosely") do |v|
      options[:verbose] = v
    end
  end.parse!

  p options
  p ARGV
This is the equivalent in Slop:
require 'slop'

opts = Slop.parse do
  banner "Usage: example.rb [options]"
  on :v, :verbose, "Run verbosely", :default => true
end

p opts.to_hash
-- http://redmine.ruby-lang.org