formosa 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/License.txt +20 -0
- data/Manifest.txt +23 -0
- data/README.txt +18 -0
- data/Rakefile +127 -0
- data/lib/ext/native_syllable_composer/HoloVowels.h +242 -0
- data/lib/ext/native_syllable_composer/LibHolo.h +1223 -0
- data/lib/ext/native_syllable_composer/compose.cpp +67 -0
- data/lib/ext/native_syllable_composer/compose.h +11 -0
- data/lib/ext/native_syllable_composer/extconf.rb +7 -0
- data/lib/ext/native_syllable_composer/native_syllable_composer.c +34 -0
- data/lib/formosa/syllable_utility.rb +86 -0
- data/lib/formosa/version.rb +9 -0
- data/lib/formosa.rb +31 -0
- data/scripts/txt2html +67 -0
- data/setup.rb +1585 -0
- data/test/test_formosa.rb +11 -0
- data/test/test_helper.rb +2 -0
- data/website/index.html +92 -0
- data/website/index.txt +38 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +138 -0
- data/website/template.rhtml +48 -0
- metadata +74 -0
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.2
|
3
|
+
specification_version: 1
|
4
|
+
name: formosa
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.0.1
|
7
|
+
date: 2007-07-30 00:00:00 +08:00
|
8
|
+
summary: A collection of libraries for Taiwanese languages processing
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: lukhnos@gmail.com
|
12
|
+
homepage: http://formosa.rubyforge.org
|
13
|
+
rubyforge_project: formosa
|
14
|
+
description: A collection of libraries for Taiwanese languages processing
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Lukhnos D. Liu
|
31
|
+
files:
|
32
|
+
- History.txt
|
33
|
+
- License.txt
|
34
|
+
- Manifest.txt
|
35
|
+
- README.txt
|
36
|
+
- Rakefile
|
37
|
+
- lib/formosa.rb
|
38
|
+
- lib/formosa/version.rb
|
39
|
+
- lib/formosa/syllable_utility.rb
|
40
|
+
- lib/ext/native_syllable_composer/HoloVowels.h
|
41
|
+
- lib/ext/native_syllable_composer/LibHolo.h
|
42
|
+
- lib/ext/native_syllable_composer/compose.cpp
|
43
|
+
- lib/ext/native_syllable_composer/compose.h
|
44
|
+
- lib/ext/native_syllable_composer/extconf.rb
|
45
|
+
- lib/ext/native_syllable_composer/native_syllable_composer.c
|
46
|
+
- scripts/txt2html
|
47
|
+
- setup.rb
|
48
|
+
- test/test_formosa.rb
|
49
|
+
- test/test_helper.rb
|
50
|
+
- website/index.html
|
51
|
+
- website/index.txt
|
52
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
53
|
+
- website/stylesheets/screen.css
|
54
|
+
- website/template.rhtml
|
55
|
+
test_files:
|
56
|
+
- test/test_formosa.rb
|
57
|
+
- test/test_helper.rb
|
58
|
+
rdoc_options:
|
59
|
+
- --main
|
60
|
+
- README.txt
|
61
|
+
extra_rdoc_files:
|
62
|
+
- History.txt
|
63
|
+
- License.txt
|
64
|
+
- Manifest.txt
|
65
|
+
- README.txt
|
66
|
+
- website/index.txt
|
67
|
+
executables: []
|
68
|
+
|
69
|
+
extensions:
|
70
|
+
- lib/ext/native_syllable_composer/extconf.rb
|
71
|
+
requirements: []
|
72
|
+
|
73
|
+
dependencies: []
|
74
|
+
|