unicode 0.4.4 → 0.4.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/unicode.gemspec +2 -1
- metadata +13 -14
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5fdd353c878b1fdde6d2e243c3a16331f452fd88
|
4
|
+
data.tar.gz: f69d445e0049cb510f90df4cf97f0aab7d6e563c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 93e3676b87e104225b10cd0fcabd4d936a5c199f178cbeae05ea0943fa2edf7c87f51117a7c2ed873531e786532109923cdfd51401cef242943305d92a1adb00
|
7
|
+
data.tar.gz: 95daa0138c4e96229edc43327678b7e4165a5b080c700b2fc8534c41d2b04ccac8466131853f90575c8a8cb4f2e00f1992201de7b2b42c462851fb5adb1bf5d1
|
data/unicode.gemspec
CHANGED
@@ -2,12 +2,13 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{unicode}
|
5
|
-
s.version = "0.4.4"
|
5
|
+
s.version = "0.4.4.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = [%q{Yoshida Masato}]
|
9
9
|
s.date = %q{2013-02-07}
|
10
10
|
s.email = %q{yoshidam@yoshidam.net}
|
11
|
+
s.licenses = %w[Ruby]
|
11
12
|
s.extensions = %w[ext/unicode/extconf.rb]
|
12
13
|
s.extra_rdoc_files = [%q{README}]
|
13
14
|
s.files = %w[
|
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unicode
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.4
|
5
|
-
prerelease:
|
4
|
+
version: 0.4.4.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Yoshida Masato
|
@@ -21,12 +20,6 @@ extra_rdoc_files:
|
|
21
20
|
files:
|
22
21
|
- README
|
23
22
|
- Rakefile
|
24
|
-
- unicode.gemspec
|
25
|
-
- lib/unicode.rb
|
26
|
-
- test/test.rb
|
27
|
-
- tools/README
|
28
|
-
- tools/mkunidata.rb
|
29
|
-
- tools/normtest.rb
|
30
23
|
- ext/unicode/extconf.rb
|
31
24
|
- ext/unicode/unicode.c
|
32
25
|
- ext/unicode/unidata.map
|
@@ -34,27 +27,33 @@ files:
|
|
34
27
|
- ext/unicode/ustring.h
|
35
28
|
- ext/unicode/wstring.c
|
36
29
|
- ext/unicode/wstring.h
|
30
|
+
- lib/unicode.rb
|
31
|
+
- test/test.rb
|
32
|
+
- tools/README
|
33
|
+
- tools/mkunidata.rb
|
34
|
+
- tools/normtest.rb
|
35
|
+
- unicode.gemspec
|
37
36
|
homepage: http://www.yoshidam.net/Ruby.html#unicode
|
38
|
-
licenses:
|
37
|
+
licenses:
|
38
|
+
- Ruby
|
39
|
+
metadata: {}
|
39
40
|
post_install_message:
|
40
41
|
rdoc_options: []
|
41
42
|
require_paths:
|
42
43
|
- lib
|
43
44
|
required_ruby_version: !ruby/object:Gem::Requirement
|
44
|
-
none: false
|
45
45
|
requirements:
|
46
|
-
- -
|
46
|
+
- - ">="
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: '0'
|
49
49
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
|
-
none: false
|
51
50
|
requirements:
|
52
|
-
- -
|
51
|
+
- - ">="
|
53
52
|
- !ruby/object:Gem::Version
|
54
53
|
version: '0'
|
55
54
|
requirements: []
|
56
55
|
rubyforge_project:
|
57
|
-
rubygems_version:
|
56
|
+
rubygems_version: 2.2.2
|
58
57
|
signing_key:
|
59
58
|
specification_version: 3
|
60
59
|
summary: Unicode normalization library.
|