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

This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
(no author) 2006-10-04 09:52:55 +00:00
parent 088f21e259
commit 96b1bca0c1
2 changed files with 52 additions and 0 deletions

27
ext/digest/lib/digest.rb Normal file
View file

@ -0,0 +1,27 @@
require 'digest.so'
module Digest
autoload "MD5", "digest/md5"
autoload "RMD160", "digest/rmd160"
autoload "SHA1", "digest/sha1"
autoload "SHA256", "digest/sha2"
autoload "SHA384", "digest/sha2"
autoload "SHA512", "digest/sha2"
class Base
# creates a digest object and read given file, _name_.
#
# p Digest::SHA256.file("X11R6.8.2-src.tar.bz2").hexdigest
# # => "f02e3c85572dc9ad7cb77c2a638e3be24cc1b5bea9fdbb0b0299c9668475c534"
def self.file(name)
digest = self.new
File.open(name, "rb") {|f|
buf = ""
while f.read(16384, buf)
digest.update buf
end
}
digest
end
end
end

View file

@ -0,0 +1,25 @@
#
# ttk::sizegrip widget
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
#
require 'tk'
require 'tkextlib/tile.rb'
module Tk
module Tile
class SizeGrip < TkWindow
end
end
end
class Tk::Tile::SizeGrip < TkWindow
include Tk::Tile::TileWidget
TkCommandNames = ['::ttk::sizegrip'.freeze].freeze
WidgetClassName = 'TSizegrip'.freeze
WidgetClassNames[WidgetClassName] = self
def self.style(*args)
[self::WidgetClassName, *(args.map!{|a| _get_eval_string(a)})].join('.')
end
end