mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* enc/prelude.rb: we sometimes run ruby without library path (especially
for test), so should permit to run ruby if unicode_normalize.rb is missing. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
345c1408a9
commit
ee4782f774
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Mon Oct 20 23:59:38 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* enc/prelude.rb: we sometimes run ruby without library path (especially
|
||||
for test), so should permit to run ruby if unicode_normalize.rb is
|
||||
missing.
|
||||
|
||||
Mon Oct 20 23:57:58 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* common.mk (lib/unicode_normlize/table.rb): enable running (n)make
|
||||
|
|
|
@ -4,4 +4,8 @@
|
|||
rescue LoadError
|
||||
end
|
||||
end
|
||||
require 'unicode_normalize'
|
||||
|
||||
begin
|
||||
require 'unicode_normalize'
|
||||
rescue LoadError
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue