utf8_proc 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +5 -1
- data/README.md +3 -0
- data/lib/utf8_proc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75c3813b3648ed26bcc1c9471bcffe8e895a97b7
|
4
|
+
data.tar.gz: 85489c6148cadd519920ac4ccf001cfdb39cd02f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d1cbf5d22f5cf6bc3959d9f0eb785e5380675b5dcde4fb681538a1c775c3f08744c9f9a4a3c49a5d58fa0e22822a9bfd6e685d33ad0f0c2e23bfc959b71508f
|
7
|
+
data.tar.gz: 94e2492d8e7ced92e05620b2b859b2fbcc4405773c1076c2cb2647e43c918c9599b461925f4aaf3fd86fdeba310ac0abc7f0d4c749a1a848bfce6d4b441f0d61
|
data/Gemfile
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
source "https://rubygems.org"
|
3
3
|
|
4
|
-
gem
|
4
|
+
# Eagerly load a version of the OpenSSL gem on MRI Ruby 2.4
|
5
|
+
# Workaround for https://github.com/bundler/bundler/issues/5235
|
6
|
+
if defined?(RUBY_DESCRIPTION) && RUBY_DESCRIPTION.start_with?("ruby 2.4")
|
7
|
+
gem "openssl"
|
8
|
+
end
|
5
9
|
|
6
10
|
# Specify your gem's dependencies in icu_test.gemspec
|
7
11
|
gemspec
|
data/README.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# UTF8Proc
|
2
2
|
|
3
|
+
[![Dependency Status](https://gemnasium.com/badges/github.com/nomoon/utf8_proc.svg)](https://gemnasium.com/github.com/nomoon/utf8_proc)
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/utf8_proc.svg)](https://badge.fury.io/rb/utf8_proc)
|
5
|
+
|
3
6
|
A simple wrapper around [utf8proc](https://github.com/JuliaLang/utf8proc) for normalizing Unicode strings. Requires the `utf8proc` library and headers to be installed on your system. *(Packages are available. OSX: `brew install utf8proc`, Linux: `libutf8proc-dev` or `utf8proc-devel`)*
|
4
7
|
|
5
8
|
Currently supports UTF-8/ASCII string input and NFC, NFD, NFKC, NFKD, and NKFC-Casefold forms. Handles Unicode 9.0 and includes the current official full suite of 9.0 normalization tests.
|
data/lib/utf8_proc/version.rb
CHANGED
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.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Bellefleur
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02-
|
11
|
+
date: 2017-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|