зеркало из https://github.com/github/ruby.git
* lib/net/ftp.rb (getbinaryfile): the second argument (localfile)
is now optional. * lib/net/ftp.rb (gettextfile): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
f930648ae5
Коммит
9620b20227
|
@ -1,3 +1,10 @@
|
|||
Wed Jul 3 13:57:53 2002 Sean Chittenden <sean@ruby-lang.org>
|
||||
|
||||
* lib/net/ftp.rb (getbinaryfile): the second argument (localfile)
|
||||
is now optional.
|
||||
|
||||
* lib/net/ftp.rb (gettextfile): ditto.
|
||||
|
||||
Wed Jul 3 13:45:42 2002 Shugo Maeda <shugo@ruby-lang.org>
|
||||
|
||||
* lib/net/ftp.rb: use &block and yield for speed.
|
||||
|
|
|
@ -327,7 +327,7 @@ module Net
|
|||
end
|
||||
end
|
||||
|
||||
def getbinaryfile(remotefile, localfile,
|
||||
def getbinaryfile(remotefile, localfile = File.basename(remotefile),
|
||||
blocksize = DEFAULT_BLOCKSIZE, &block)
|
||||
if @resume
|
||||
rest_offset = File.size?(localfile)
|
||||
|
@ -347,7 +347,7 @@ module Net
|
|||
end
|
||||
end
|
||||
|
||||
def gettextfile(remotefile, localfile, &block)
|
||||
def gettextfile(remotefile, localfile = File.basename(remotefile), &block)
|
||||
f = open(localfile, "w")
|
||||
begin
|
||||
retrlines("RETR " + remotefile) do |line|
|
||||
|
|
Загрузка…
Ссылка в новой задаче