ruby_unicode_prop 1.0 → 1.0.1
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/ChangeLog +5 -0
- data/ruby_unicode_prop.gemspec +2 -2
- data/test/test_ruby_unicode_prop.rb +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a8c9c2b8b36964144e693bf082a63e4c93ac1d8e9fe3c20c79692dac26df2d7
|
4
|
+
data.tar.gz: 9245cacf4ab452f2c6fc691cd79c5a980f0e94bed5ebbea476ec9bed9d1cd5b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed13fe688acf41629918e489d9ea6707f9c222833cff7933a34279e56a40ecbaaa5f76188401bede175dfb8a916227f0e113a533879f9031b23b779eb8548a3f
|
7
|
+
data.tar.gz: c7ae6c37921368149fd8ecb366fccdd580a7f2f35cd657f28e76f183370822f2c72d6d18ba3743350f72333ba387ce72ee2cdbdd7c0d9b106350be6fb66660cd
|
data/ChangeLog
CHANGED
data/ruby_unicode_prop.gemspec
CHANGED
@@ -4,7 +4,7 @@ require 'rake'
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = %q{ruby_unicode_prop}.sub(/.*/){|c| (c == File.basename(Dir.pwd)) ? c : raise("ERROR: s.name=(#{c}) in gemspec seems wrong!")}
|
7
|
-
s.version = "1.0"
|
7
|
+
s.version = "1.0.1"
|
8
8
|
# s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
9
9
|
s.bindir = 'bin'
|
10
10
|
%w(ruby_unicode_prop).each do |f|
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
File.executable?(path) ? s.executables << f : raise("ERROR: Executable (#{path}) is not executable!")
|
13
13
|
end
|
14
14
|
s.authors = ["Masa Sakano"]
|
15
|
-
s.date = %q{2019-10-
|
15
|
+
s.date = %q{2019-10-27}
|
16
16
|
s.summary = %q{Command to print the characters and hex-codepoints with the given Unicode properties}
|
17
17
|
s.description = %q{This module provides utility functions and methods to handle plain text, classes Part/Paragraph/Boundary to represent the logical structure of a document and ParseRule to describe the rules to parse plain text to produce a Part-type Ruby instance.}
|
18
18
|
# s.email = %q{abc@example.com}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_unicode_prop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Masa Sakano
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: This module provides utility functions and methods to handle plain text,
|
14
14
|
classes Part/Paragraph/Boundary to represent the logical structure of a document
|