mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
![duerst](/assets/img/avatar_default.png)
the methods that are available on String are available without explicit require. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
7 lines
136 B
Ruby
7 lines
136 B
Ruby
%w'enc/encdb.so enc/trans/transdb.so'.each do |init|
|
|
begin
|
|
require(init)
|
|
rescue LoadError
|
|
end
|
|
end
|
|
require 'unicode_normalize'
|