1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rubygems.rb (Gem::binary_mode): binary mode uses binary

encoding.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25227 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-10-04 05:01:12 +00:00
parent 47dfb32c43
commit c3721fdcfc
2 changed files with 8 additions and 2 deletions

View file

@ -1,10 +1,16 @@
Sun Oct 4 14:01:10 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/rubygems.rb (Gem::binary_mode): binary mode uses binary
encoding.
Sun Oct 4 08:27:10 2009 Tanaka Akira <akr@fsij.org>
* enum.c (slicebefore_ii): use id_eqq.
Sun Oct 4 06:40:09 2009 Alexander Zavorine <alexandre.zavorine@nokia.com>
* symbian/setup (ruby.mmp): added macro RUBY_EXPORT to match the change in dln.c
* symbian/setup (ruby.mmp): added macro RUBY_EXPORT to match the
change in dln.c
Sun Oct 4 05:34:34 2009 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>

View file

@ -388,7 +388,7 @@ module Gem
# The mode needed to read a file as straight binary.
def self.binary_mode
@binary_mode ||= RUBY_VERSION > '1.9' ? 'rb:ascii-8bit' : 'rb'
'rb'
end
##