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

lib/unicode_normalize.rb: Changing require statement, adjusting copyright.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48012 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
duerst 2014-10-19 01:08:13 +00:00
parent e4f71908d6
commit b95ec57da2
2 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Sun Oct 19 10:08:08 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
* lib/unicode_normalize.rb: Changing require statement,
adjusting copyright.
Sun Oct 19 10:04:04 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
* lib/unicode_normalize.rb: Importing from

View file

@ -1,10 +1,8 @@
# coding: utf-8
# Copyright 2010-2013 Ayumu Nojima (野島 歩) and Martin J. Dürst (duerst@it.aoyama.ac.jp)
# available under the same licence as Ruby itself
# (see http://www.ruby-lang.org/en/LICENSE.txt)
# Copyright Ayumu Nojima (野島 歩) and Martin J. Dürst (duerst@it.aoyama.ac.jp)
require File.dirname(__FILE__) + '/normalize'
require 'unicode_normalize/normalize.rb'
class String
def normalize(form = :nfc)