[#62904] [ruby-trunk - Feature #9894] [Open] [RFC] README.EXT: document rb_gc_register_mark_object — normalperson@...
Issue #9894 has been reported by Eric Wong.
3 messages
2014/06/02
[#63321] [ANN] ElixirConf 2014 - Don't Miss Jos辿 Valim and Dave Thomas — Jim Freeze <jimfreeze@...>
Just a few more weeks until ElixirConf 2014!
6 messages
2014/06/24
[#63391] Access Modifiers (Internal Interfaces) — Daniel da Silva Ferreira <danieldasilvaferreira@...>
Hi,
3 messages
2014/06/28
[ruby-core:63431] [ruby-trunk - Feature #5010] [Closed] Add Slop(-like) in stdlib and deprecate current OptionParser API
From:
shyouhei@...
Date:
2014-06-30 11:33:29 UTC
List:
ruby-core #63431
Issue #5010 has been updated by Shyouhei Urabe.
Status changed from Assigned to Closed
----------------------------------------
Feature #5010: Add Slop(-like) in stdlib and deprecate current OptionParser API
https://bugs.ruby-lang.org/issues/5010#change-47474
* Author: Rodrigo Rosenfeld Rosas
* Status: Closed
* Priority: Low
* Assignee: Yukihiro Matsumoto
* Category:
* Target version: next minor
----------------------------------------
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 :
<pre>
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
</pre>
This is the equivalent in Slop:
<pre>
require 'slop'
opts = Slop.parse do
banner "Usage: example.rb [options]"
on :v, :verbose, "Run verbosely", :default => true
end
p opts.to_hash
</pre>
--
https://bugs.ruby-lang.org/