summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-19 09:39:41 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-19 09:39:41 +0000
commit824670aa9e499edb17bce1f57e1b197968d2f380 (patch)
treee3801d9f62025d4580d9a15223f56a413aecede1
parent8c722a9a1e26820fd466681b506fa0e23e6dddb1 (diff)
enc/prelude.rb: Added automatic loading of lib/unicode_normalize.rb. This makes sure that all
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
-rw-r--r--ChangeLog7
-rw-r--r--enc/prelude.rb1
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3c55293be8..5afeb9ec51 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sun Oct 19 18:39:39 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
+
+ * enc/prelude.rb: Added automatic loading of
+ lib/unicode_normalize.rb. This makes sure that all
+ the methods that are available on String are
+ available without explicit require.
+
Sun Oct 19 18:35:35 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
* lib/unicode_normalize/normalize.rb: Added a missing
diff --git a/enc/prelude.rb b/enc/prelude.rb
index 8ce59f957a..cae1b91695 100644
--- a/enc/prelude.rb
+++ b/enc/prelude.rb
@@ -4,3 +4,4 @@
rescue LoadError
end
end
+require 'unicode_normalize'