diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-28 03:10:09 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-28 03:10:09 +0000 |
commit | 79dd244c3aacac272120c19f36a641c5c48a08a0 (patch) | |
tree | 3c9e8381871d1e84d1aad690967853031ea8ae6b | |
parent | 5dbc6583c93621a7e992163bd27991bd3d3d9378 (diff) | |
download | ruby-79dd244c3aacac272120c19f36a641c5c48a08a0.tar.gz |
Regenerated binstubs of bundler, rdoc and irb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rwxr-xr-x | bin/bundle | 10 | ||||
-rwxr-xr-x | bin/bundler | 10 | ||||
-rwxr-xr-x | bin/irb | 10 | ||||
-rwxr-xr-x | bin/rdoc | 10 | ||||
-rwxr-xr-x | bin/ri | 10 |
5 files changed, 25 insertions, 25 deletions
diff --git a/bin/bundle b/bin/bundle index 59dad21c60..1a0b06b005 100755 --- a/bin/bundle +++ b/bin/bundle @@ -10,11 +10,11 @@ require 'rubygems' version = ">= 0.a" -if ARGV.first - str = ARGV.first - str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding - if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then - version = $1 +str = ARGV.first +if str + str = str.b[/\A_(.*)_\z/, 1] + if str and Gem::Version.correct?(str) + version = str ARGV.shift end end diff --git a/bin/bundler b/bin/bundler index 7ef736899d..e15eb39ed7 100755 --- a/bin/bundler +++ b/bin/bundler @@ -10,11 +10,11 @@ require 'rubygems' version = ">= 0.a" -if ARGV.first - str = ARGV.first - str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding - if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then - version = $1 +str = ARGV.first +if str + str = str.b[/\A_(.*)_\z/, 1] + if str and Gem::Version.correct?(str) + version = str ARGV.shift end end @@ -10,11 +10,11 @@ require 'rubygems' version = ">= 0.a" -if ARGV.first - str = ARGV.first - str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding - if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then - version = $1 +str = ARGV.first +if str + str = str.b[/\A_(.*)_\z/, 1] + if str and Gem::Version.correct?(str) + version = str ARGV.shift end end @@ -10,11 +10,11 @@ require 'rubygems' version = ">= 0.a" -if ARGV.first - str = ARGV.first - str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding - if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then - version = $1 +str = ARGV.first +if str + str = str.b[/\A_(.*)_\z/, 1] + if str and Gem::Version.correct?(str) + version = str ARGV.shift end end @@ -10,11 +10,11 @@ require 'rubygems' version = ">= 0.a" -if ARGV.first - str = ARGV.first - str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding - if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then - version = $1 +str = ARGV.first +if str + str = str.b[/\A_(.*)_\z/, 1] + if str and Gem::Version.correct?(str) + version = str ARGV.shift end end |