Skip to content

Commit 3ac9914

Browse files
committed
merge revision(s) 18058:
* lib/optparse.rb (OptionParser#environment): requires shellwords. [ruby-dev:35466] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@18110 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent c9d0983 commit 3ac9914

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Thu Jul 17 21:30:55 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
2+
3+
* lib/optparse.rb (OptionParser#environment): requires shellwords.
4+
[ruby-dev:35466]
5+
16
Thu Jul 17 02:05:10 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
27

38
* lib/xmlrpc/client.rb (XMLRPC::Client#do_rpc): requires

lib/optparse.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1476,6 +1476,7 @@ def load(filename = nil)
14761476
#
14771477
def environment(env = File.basename($0, '.*'))
14781478
env = ENV[env] || ENV[env.upcase] or return
1479+
require 'shellwords'
14791480
parse(*Shellwords.shellwords(env))
14801481
end
14811482

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2008-07-17"
33
#define RUBY_VERSION_CODE 187
44
#define RUBY_RELEASE_CODE 20080717
5-
#define RUBY_PATCHLEVEL 60
5+
#define RUBY_PATCHLEVEL 61
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)