mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* tool/make-snapshot: binary encoding spec is no longer needed in 1.9.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20118 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5732566f4d
commit
b2a9e7c85a
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Nov 7 01:24:20 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* tool/make-snapshot: binary encoding spec is no longer needed in 1.9.
|
||||
|
||||
Thu Nov 6 22:21:23 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* thread.c (rb_thread_stop_timer_thread): terminates timer thread
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/ruby -s
|
||||
# -*- encoding: us-ascii -*-
|
||||
# -*- coding: us-ascii -*-
|
||||
require 'uri'
|
||||
require 'digest/md5'
|
||||
require 'digest/sha2'
|
||||
|
@ -197,7 +197,7 @@ end
|
|||
|
||||
revisions.collect {|rev| package(rev, destdir)}.flatten.each do |name|
|
||||
name or next
|
||||
str = open(name, "rb:binary") {|f| f.read}
|
||||
str = open(name, "rb") {|f| f.read}
|
||||
md5 = Digest::MD5.hexdigest str
|
||||
sha = Digest::SHA256.hexdigest str
|
||||
puts "* #{name}"
|
||||
|
|
Loading…
Add table
Reference in a new issue