utf8_proc 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b0f876c27547cb55eb9c0dd4ae3e4dc9686b76bd
4
- data.tar.gz: ca58c8a85dbce81d92cbd724f38f29c81383349e
3
+ metadata.gz: b0bcc124a9c3b7454adce5e3cbd9683bd23348df
4
+ data.tar.gz: 5f02f3653af737024f76ac89a4bbcd46fe1edc8a
5
5
  SHA512:
6
- metadata.gz: 56e03b1892309039f455c07cbc857076460a66bd910775df4eebfa95c597829731839ae2049d3006210531a85c3d2aa2720a0265997eb237782aba1e5b074163
7
- data.tar.gz: f0a52ac5e29de9dc47c276ea8a4bda42a06579540331ff22dd8b89411f4a290d5c138894617b91f7756629fb7adc31ddf1d86be2912612232e0000c4c3f064c9
6
+ metadata.gz: 556039eb22e607c1189a8ddd5b2ea3c9e248039403a6b1d08267002d01c979ce79e51c31aa96608e7c4c5b2a6b3872edc15adb0911846e49a9c40c86c29072fc
7
+ data.tar.gz: 2954531729a7da56ce6b035e1e7ce185da96accfdeea1e16f99fe2f53ee27ed1e14855f0d338a69105d0e1e606ef0fc8c92bf052d7c7b98cc4ad296b7d6a4a08
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module UTF8Proc
3
- VERSION = "0.4.0".freeze
3
+ VERSION = "0.4.1".freeze
4
4
  end
@@ -19,7 +19,8 @@ Gem::Specification.new do |spec|
19
19
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
20
20
  f.match(%r{^(test|spec|features)/})
21
21
  end
22
- spec.files += ["vendor/libutf8proc/utf8proc.c",
22
+ spec.files += ["vendor/libutf8proc/LICENSE.md",
23
+ "vendor/libutf8proc/utf8proc.c",
23
24
  "vendor/libutf8proc/utf8proc.h",
24
25
  "vendor/libutf8proc/utf8proc_data.c"]
25
26
 
@@ -0,0 +1,93 @@
1
+ ## utf8proc license ##
2
+
3
+ **utf8proc** is a software package originally developed
4
+ by Jan Behrens and the rest of the Public Software Group, who
5
+ deserve nearly all of the credit for this library, that is now maintained by the Julia-language developers. Like the original utf8proc,
6
+ whose copyright and license statements are reproduced below, all new
7
+ work on the utf8proc library is licensed under the [MIT "expat"
8
+ license](http://opensource.org/licenses/MIT):
9
+
10
+ *Copyright © 2014-2015 by Steven G. Johnson, Jiahao Chen, Tony Kelman, Jonas Fonseca, and other contributors listed in the git history.*
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a
13
+ copy of this software and associated documentation files (the "Software"),
14
+ to deal in the Software without restriction, including without limitation
15
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
16
+ and/or sell copies of the Software, and to permit persons to whom the
17
+ Software is furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in
20
+ all copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28
+ DEALINGS IN THE SOFTWARE.
29
+
30
+ ## Original utf8proc license ##
31
+
32
+ *Copyright (c) 2009, 2013 Public Software Group e. V., Berlin, Germany*
33
+
34
+ Permission is hereby granted, free of charge, to any person obtaining a
35
+ copy of this software and associated documentation files (the "Software"),
36
+ to deal in the Software without restriction, including without limitation
37
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
38
+ and/or sell copies of the Software, and to permit persons to whom the
39
+ Software is furnished to do so, subject to the following conditions:
40
+
41
+ The above copyright notice and this permission notice shall be included in
42
+ all copies or substantial portions of the Software.
43
+
44
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
47
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
49
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
50
+ DEALINGS IN THE SOFTWARE.
51
+
52
+ ## Unicode data license ##
53
+
54
+ This software distribution contains derived data from a modified version of
55
+ the Unicode data files. The following license applies to that data:
56
+
57
+ **COPYRIGHT AND PERMISSION NOTICE**
58
+
59
+ *Copyright (c) 1991-2007 Unicode, Inc. All rights reserved. Distributed
60
+ under the Terms of Use in http://www.unicode.org/copyright.html.*
61
+
62
+ Permission is hereby granted, free of charge, to any person obtaining a
63
+ copy of the Unicode data files and any associated documentation (the "Data
64
+ Files") or Unicode software and any associated documentation (the
65
+ "Software") to deal in the Data Files or Software without restriction,
66
+ including without limitation the rights to use, copy, modify, merge,
67
+ publish, distribute, and/or sell copies of the Data Files or Software, and
68
+ to permit persons to whom the Data Files or Software are furnished to do
69
+ so, provided that (a) the above copyright notice(s) and this permission
70
+ notice appear with all copies of the Data Files or Software, (b) both the
71
+ above copyright notice(s) and this permission notice appear in associated
72
+ documentation, and (c) there is clear notice in each modified Data File or
73
+ in the Software as well as in the documentation associated with the Data
74
+ File(s) or Software that the data or software has been modified.
75
+
76
+ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
77
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
78
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
79
+ THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
80
+ INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
81
+ CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
82
+ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
83
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
84
+ PERFORMANCE OF THE DATA FILES OR SOFTWARE.
85
+
86
+ Except as contained in this notice, the name of a copyright holder shall
87
+ not be used in advertising or otherwise to promote the sale, use or other
88
+ dealings in these Data Files or Software without prior written
89
+ authorization of the copyright holder.
90
+
91
+ Unicode and the Unicode logo are trademarks of Unicode, Inc., and may be
92
+ registered in some jurisdictions. All other trademarks and registered
93
+ trademarks mentioned herein are the property of their respective owners.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: utf8_proc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Bellefleur
@@ -124,6 +124,7 @@ files:
124
124
  - lib/utf8_proc/jruby.rb
125
125
  - lib/utf8_proc/version.rb
126
126
  - utf8_proc.gemspec
127
+ - vendor/libutf8proc/LICENSE.md
127
128
  - vendor/libutf8proc/utf8proc.c
128
129
  - vendor/libutf8proc/utf8proc.h
129
130
  - vendor/libutf8proc/utf8proc_data.c