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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a10b2518012c6465c1365bf5d1f5b74ffe31c1f8
4
- data.tar.gz: 8d62ad653f961acbe83a0886b1aec36e0c545343
3
+ metadata.gz: 75c3813b3648ed26bcc1c9471bcffe8e895a97b7
4
+ data.tar.gz: 85489c6148cadd519920ac4ccf001cfdb39cd02f
5
5
  SHA512:
6
- metadata.gz: 6802fae4cf0b8a3d515541f540f2cc377b6d3c10ac10ea48fa0b7b045169083143f44d77b6bb7b5aebd2d507365e438ca07316a447f8f2563c328c21d6bc2269
7
- data.tar.gz: 8b7b35123552afd904a2ec05fc92301b9f03876f9721b53e7e95e3bd644dd37241fd98b94808750280b142eb02b7e897b3a00c9357354847ee70657c617d3522
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 "openssl"
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.
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module UTF8Proc
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
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.0
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-21 00:00:00.000000000 Z
11
+ date: 2017-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler