[前][次][番号順一覧][スレッド一覧]

ruby-changes:35942

From: duerst <ko1@a...>
Date: Sun, 19 Oct 2014 18:39:48 +0900 (JST)
Subject: [ruby-changes:35942] duerst:r48023 (trunk): enc/prelude.rb: Added automatic loading of lib/unicode_normalize.rb. This makes sure that all

duerst	2014-10-19 18:39:41 +0900 (Sun, 19 Oct 2014)

  New Revision: 48023

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=48023

  Log:
    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.

  Modified files:
    trunk/ChangeLog
    trunk/enc/prelude.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 48022)
+++ ChangeLog	(revision 48023)
@@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sun Oct 19 18:39:39 2014  Martin Duerst <duerst@i...>
+
+	* 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@i...>
 
 	* lib/unicode_normalize/normalize.rb: Added a missing
Index: enc/prelude.rb
===================================================================
--- enc/prelude.rb	(revision 48022)
+++ enc/prelude.rb	(revision 48023)
@@ -4,3 +4,4 @@ https://github.com/ruby/ruby/blob/trunk/enc/prelude.rb#L4
   rescue LoadError
   end
 end
+require 'unicode_normalize'

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]