unicode 0.1 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/{ext/extconf.rb → extconf.rb} +0 -0
- data/{test/test.rb → test.rb} +0 -0
- data/tools/README +6 -0
- data/{bin → tools}/mkunidata.rb +0 -0
- data/{ext/unicode.c → unicode.c} +0 -0
- data/{ext/unidata.map → unidata.map} +0 -0
- data/{ext/ustring.c → ustring.c} +0 -0
- data/{ext/ustring.h → ustring.h} +0 -0
- data/{ext/wstring.c → wstring.c} +4 -0
- data/{ext/wstring.h → wstring.h} +0 -0
- metadata +63 -39
File without changes
|
data/{test/test.rb → test.rb}
RENAMED
File without changes
|
data/tools/README
ADDED
data/{bin → tools}/mkunidata.rb
RENAMED
File without changes
|
data/{ext/unicode.c → unicode.c}
RENAMED
File without changes
|
File without changes
|
data/{ext/ustring.c → ustring.c}
RENAMED
File without changes
|
data/{ext/ustring.h → ustring.h}
RENAMED
File without changes
|
data/{ext/wstring.c → wstring.c}
RENAMED
data/{ext/wstring.h → wstring.h}
RENAMED
File without changes
|
metadata
CHANGED
@@ -1,47 +1,71 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.10
|
3
|
-
specification_version: 1
|
4
2
|
name: unicode
|
5
3
|
version: !ruby/object:Gem::Version
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Yoshida Masato
|
15
13
|
autorequire:
|
16
|
-
default_executable:
|
17
14
|
bindir: bin
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
platform: ruby
|
27
|
-
authors: []
|
28
|
-
files:
|
29
|
-
- bin/mkunidata.rb
|
30
|
-
- ext/ustring.c
|
31
|
-
- ext/ustring.h
|
32
|
-
- ext/unicode.c
|
33
|
-
- ext/wstring.c
|
34
|
-
- ext/wstring.h
|
35
|
-
- ext/extconf.rb
|
36
|
-
- ext/unidata.map
|
37
|
-
- test/test.rb
|
38
|
-
- README
|
39
|
-
test_files: []
|
40
|
-
rdoc_options: []
|
41
|
-
extra_rdoc_files:
|
42
|
-
- README
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2005-08-13 00:00:00 +02:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description:
|
22
|
+
email: yoshidam@yoshidam.net
|
43
23
|
executables: []
|
24
|
+
|
44
25
|
extensions:
|
45
|
-
|
26
|
+
- extconf.rb
|
27
|
+
extra_rdoc_files:
|
28
|
+
- README
|
29
|
+
files:
|
30
|
+
- extconf.rb
|
31
|
+
- unicode.c
|
32
|
+
- ustring.c
|
33
|
+
- ustring.h
|
34
|
+
- wstring.c
|
35
|
+
- wstring.h
|
36
|
+
- README
|
37
|
+
- test.rb
|
38
|
+
- tools/mkunidata.rb
|
39
|
+
- tools/README
|
40
|
+
- unidata.map
|
41
|
+
has_rdoc: true
|
42
|
+
homepage: http://www.yoshidam.net/Ruby.html#unicode
|
43
|
+
licenses: []
|
44
|
+
|
45
|
+
post_install_message:
|
46
|
+
rdoc_options: []
|
47
|
+
|
48
|
+
require_paths: .
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
segments:
|
54
|
+
- 0
|
55
|
+
version: "0"
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
segments:
|
61
|
+
- 0
|
62
|
+
version: "0"
|
46
63
|
requirements: []
|
47
|
-
|
64
|
+
|
65
|
+
rubyforge_project:
|
66
|
+
rubygems_version: 1.3.6
|
67
|
+
signing_key:
|
68
|
+
specification_version: 3
|
69
|
+
summary: Unicode normalization library.
|
70
|
+
test_files: []
|
71
|
+
|