Prev: [ANN] mongrel_service 0.4.beta2 Released
Next: rdp-arguments -- named arguments for 1.8 and 1.9!
From: Roger Pack on 2 Jan 2010 21:41 Though I can't take much credit for this (the original author is maca [1]), in case it's useful, here's a pretty stable release of the arguments gem. usage class A def go(a = 3, b = 4) [a, b] end named_args :go end >> A.new.go(3, 4) => [3, 4] >> A.new.go(:a => 3, :b => 4) => [3, 4] Compatible with 1.8.x, and 1.9.x Ahh. Enjoy and happy new year. http://github.com/rdp/arguments -r [1] http://github.com/maca/arguments -- Posted via http://www.ruby-forum.com/.
|
Pages: 1 Prev: [ANN] mongrel_service 0.4.beta2 Released Next: rdp-arguments -- named arguments for 1.8 and 1.9! |