diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-01 07:14:38 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-01 07:14:38 +0000 |
| commit | c737e6d90dfbf14b3d3701a67fc2f478cff00794 (patch) | |
| tree | c686f8d7095b3d85ce027f79c1c2fa6add35408b | |
| parent | 37a19c7d52c01ba8a9c07ebb4374ab66a22b4e06 (diff) | |
* lib/optparse.rb (Switch#summarize): strips an equal sign from
short option, and fills right sides in shorter lines.
[ruby-talk:326414]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@21927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | lib/optparse.rb | 8 | ||||
| -rw-r--r-- | version.h | 8 |
3 files changed, 17 insertions, 5 deletions
@@ -1,3 +1,9 @@ +Sun Feb 1 16:14:37 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * lib/optparse.rb (Switch#summarize): strips an equal sign from + short option, and fills right sides in shorter lines. + [ruby-talk:326414] + Sat Jan 31 16:04:38 2009 Tanaka Akira <akr@fsij.org> * io.c (io_getpartial): fflush after read for updating pos in FILE. diff --git a/lib/optparse.rb b/lib/optparse.rb index b71157f7da..d19e940067 100644 --- a/lib/optparse.rb +++ b/lib/optparse.rb @@ -384,10 +384,16 @@ class OptionParser left[-1] << if left[-1].empty? then ' ' * 4 else ', ' end << s end - left[0] << arg if arg + if arg + left[0] << (left[1] ? arg.sub(/\A(\[?)=/, '\1') + ',' : arg) + end mlen = left.collect {|s| s.length}.max.to_i while mlen > width and l = left.shift mlen = left.collect {|s| s.length}.max.to_i if l.length == mlen + if l.length < width and (r = right[0]) and !r.empty? + l = l.to_s.ljust(width) + ' ' + r + right.shift + end yield(indent + l) end @@ -1,15 +1,15 @@ #define RUBY_VERSION "1.8.7" -#define RUBY_RELEASE_DATE "2009-01-31" +#define RUBY_RELEASE_DATE "2009-02-01" #define RUBY_VERSION_CODE 187 -#define RUBY_RELEASE_CODE 20090131 +#define RUBY_RELEASE_CODE 20090201 #define RUBY_PATCHLEVEL 5000 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 #define RUBY_VERSION_TEENY 7 #define RUBY_RELEASE_YEAR 2009 -#define RUBY_RELEASE_MONTH 1 -#define RUBY_RELEASE_DAY 31 +#define RUBY_RELEASE_MONTH 2 +#define RUBY_RELEASE_DAY 1 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; |
