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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: af67bc03745452e81cf9a29a48ed797fd82cef01
4
- data.tar.gz: 7f85e858df6f46406060198108be6b8b14a7b6eb
3
+ metadata.gz: 510dc5e712750f1f014a6c6482feb24d8d08bd29
4
+ data.tar.gz: c1b62048fa92972eacf49eb38ddb1b6091f2ee9f
5
5
  SHA512:
6
- metadata.gz: b3fae9148367d5b39cfb04cc52cb800c53b5ed4e8bfcb5b93a8e1831d86af6a5179a00c144b993345b84020b3e4c1c56816f8d8859d283657bfc9f1521bb748e
7
- data.tar.gz: b228d550c5d55822a1b4bf70dc2130a09bb18482dbcb96ff30c7fb4bb694ee9a1933e6b9931e7a962028d8296676b16a343c4286e355e8029f5006175c594abf
6
+ metadata.gz: 2a8937fd96e14b0987851ae2c7af11ef5c3ef3e4fcce370bf701dcd6b30a2561c2ede6f3537ae8606c82ee83c4a9c354da549ac507329a8975a774a960d1b6a0
7
+ data.tar.gz: f8113ddd0cb53df34290e5bb122eabb8258e14589c479a3676bfd3bc5de9a643a23d170aed28e168568170a072eda0ebe7a3bef0e506096df752053abaa83d96
data/CHANGELOG.txt CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.0.5
4
+
5
+ * Actually include new index from 1.0.4
6
+
3
7
  ## 1.0.4
4
8
 
5
9
  * New index format (much smaller) and internal API changes
Binary file
@@ -1,6 +1,6 @@
1
1
  module Unicode
2
2
  module DisplayWidth
3
- VERSION = '1.0.4'
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/unicode-width.index]) + %w{Rakefile unicode-display_width.gemspec}
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
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