utf8_proc 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitmodules +3 -0
- data/.rubocop.yml +2 -0
- data/.travis.yml +1 -4
- data/README.md +10 -2
- data/Rakefile +6 -3
- data/ext/utf8_proc/extconf.rb +12 -3
- data/ext/utf8_proc/utf8_proc.c +74 -7
- data/lib/utf8_proc/core_ext/string.rb +11 -0
- data/lib/utf8_proc/core_ext/string_jruby.rb +33 -0
- data/lib/utf8_proc/version.rb +1 -1
- data/lib/utf8_proc.rb +1 -1
- data/utf8_proc.gemspec +5 -1
- data/vendor/libutf8proc/utf8proc.c +755 -0
- data/vendor/libutf8proc/utf8proc.h +699 -0
- data/vendor/libutf8proc/utf8proc_data.c +14386 -0
- metadata +8 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: utf8_proc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Bellefleur
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02-
|
11
|
+
date: 2017-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -103,6 +103,7 @@ extensions:
|
|
103
103
|
extra_rdoc_files: []
|
104
104
|
files:
|
105
105
|
- ".gitignore"
|
106
|
+
- ".gitmodules"
|
106
107
|
- ".rubocop.yml"
|
107
108
|
- ".ruby-gemset"
|
108
109
|
- ".ruby-version"
|
@@ -118,9 +119,14 @@ files:
|
|
118
119
|
- ext/utf8_proc/utf8_proc.c
|
119
120
|
- ext/utf8_proc/utf8_proc.h
|
120
121
|
- lib/utf8_proc.rb
|
122
|
+
- lib/utf8_proc/core_ext/string.rb
|
123
|
+
- lib/utf8_proc/core_ext/string_jruby.rb
|
121
124
|
- lib/utf8_proc/jruby.rb
|
122
125
|
- lib/utf8_proc/version.rb
|
123
126
|
- utf8_proc.gemspec
|
127
|
+
- vendor/libutf8proc/utf8proc.c
|
128
|
+
- vendor/libutf8proc/utf8proc.h
|
129
|
+
- vendor/libutf8proc/utf8proc_data.c
|
124
130
|
homepage: https://github.com/nomoon/utf8_proc
|
125
131
|
licenses:
|
126
132
|
- MIT
|