diff --git a/ChangeLog b/ChangeLog index 596b41ef42..9698756c26 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,19 +1,24 @@ -Tue Sep 24 18:06:06 2014 Martin Duerst +Wed Sep 24 18:59:59 2014 Martin Duerst + + * tool/downloader.rb: Adjusting example for + Downloader.download to implementation changes in r47693. + +Wed Sep 24 18:06:06 2014 Martin Duerst * tool/downloader.rb: Removing unused method Downloader.download_if_modified_since. (if ever used, just replace with Downloader.download) -Tue Sep 24 17:59:59 2014 Martin Duerst +Wed Sep 24 17:59:59 2014 Martin Duerst * tool/downloader.rb: Fixing raise after return. -Tue Sep 24 17:55:55 2014 Martin Duerst +Wed Sep 24 17:55:55 2014 Martin Duerst * tool/downloader.rb: Made Unicode data file location available via :unicode Symbol. -Tue Sep 24 10:45:45 2014 Martin Duerst +Wed Sep 24 10:45:45 2014 Martin Duerst * tool/downloader.rb: Small fix to documentation comment. diff --git a/tool/downloader.rb b/tool/downloader.rb index 366738b8ec..8eb60ac2fc 100644 --- a/tool/downloader.rb +++ b/tool/downloader.rb @@ -59,8 +59,7 @@ class Downloader # modified time. # # Example usage: - # download 'http://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt', - # 'enc/unicode/data/UnicodeData.txt' + # download :unicode, 'UnicodeData.txt', 'enc/unicode/data' def self.download(url, name, dir = nil, ims = true) file = dir ? File.join(dir, name) : name url = uri_to_download(url, name)