unicode-display_width 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.txt +4 -0
- data/data/display_width.marshal.gz +0 -0
- data/lib/unicode/display_width/constants.rb +1 -1
- data/unicode-display_width.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 510dc5e712750f1f014a6c6482feb24d8d08bd29
|
4
|
+
data.tar.gz: c1b62048fa92972eacf49eb38ddb1b6091f2ee9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a8937fd96e14b0987851ae2c7af11ef5c3ef3e4fcce370bf701dcd6b30a2561c2ede6f3537ae8606c82ee83c4a9c354da549ac507329a8975a774a960d1b6a0
|
7
|
+
data.tar.gz: f8113ddd0cb53df34290e5bb122eabb8258e14589c479a3676bfd3bc5de9a643a23d170aed28e168568170a072eda0ebe7a3bef0e506096df752053abaa83d96
|
data/CHANGELOG.txt
CHANGED
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module Unicode
|
2
2
|
module DisplayWidth
|
3
|
-
VERSION = '1.0.
|
3
|
+
VERSION = '1.0.5'
|
4
4
|
UNICODE_VERSION = "8.0.0".freeze
|
5
5
|
DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + '/../../../data/').freeze
|
6
6
|
INDEX_FILENAME = (DATA_DIRECTORY + '/display_width.marshal.gz').freeze
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.homepage = "http://github.com/janlelis/unicode-display_width"
|
10
10
|
s.summary = "Determines the monospace display width of a string in Ruby."
|
11
11
|
s.description = "Determines the monospace display width of a string using EastAsianWidth.txt, Unicode general category, and other data."
|
12
|
-
s.files = Dir.glob(%w[{lib,spec}/**/*.rb [A-Z]*.{txt,rdoc} data/
|
12
|
+
s.files = Dir.glob(%w[{lib,spec}/**/*.rb [A-Z]*.{txt,rdoc} data/display_width.marshal.gz]) + %w{Rakefile unicode-display_width.gemspec}
|
13
13
|
s.extra_rdoc_files = ["README.md", "MIT-LICENSE.txt", "CHANGELOG.txt"]
|
14
14
|
s.license = 'MIT'
|
15
15
|
s.required_ruby_version = '>= 1.9.3'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unicode-display_width
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Lelis
|
@@ -52,6 +52,7 @@ files:
|
|
52
52
|
- MIT-LICENSE.txt
|
53
53
|
- README.md
|
54
54
|
- Rakefile
|
55
|
+
- data/display_width.marshal.gz
|
55
56
|
- lib/unicode/display_width.rb
|
56
57
|
- lib/unicode/display_width/constants.rb
|
57
58
|
- lib/unicode/display_width/index.rb
|