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

tool/downloader.rb: changed Unicode data download location

from latest Unicode version to Unicode 7.0.0.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48194 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
duerst 2014-10-30 04:23:27 +00:00
parent e95e524782
commit bd38e0c4f2
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Thu Oct 30 13:23:23 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
* tool/downloader.rb: changed Unicode data download location
from latest Unicode version to Unicode 7.0.0.
Thu Oct 30 11:16:13 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm_insnhelper.c (vm_callee_setup_arg{_complex,}): try conversion

View file

@ -17,7 +17,7 @@ class Downloader
class Unicode < self
def self.download(name, *rest)
super("http://www.unicode.org/Public/UCD/latest/ucd/#{name}", name, *rest)
super("http://www.unicode.org/Public/7.0.0/ucd/#{name}", name, *rest)
end
end