text-hyphen 1.0.0 → 1.0.2
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.
- data/.autotest +23 -0
- data/COPYING.txt +339 -0
- data/History.txt +23 -0
- data/{LICENCE → LICENCE.txt} +9 -9
- data/Manifest.txt +44 -0
- data/README.txt +82 -0
- data/Rakefile +16 -108
- data/bin/hyphen +3 -1
- data/lib/text-hyphen.rb +1 -0
- data/lib/text/hyphen.rb +135 -134
- data/lib/text/hyphen/language.rb +13 -9
- data/lib/text/hyphen/language/cs.rb +363 -363
- data/lib/text/hyphen/language/da.rb +1 -1
- data/lib/text/hyphen/language/de.rb +1 -0
- data/lib/text/hyphen/language/de1.rb +8 -6
- data/lib/text/hyphen/language/de2.rb +7 -6
- data/lib/text/hyphen/language/en_uk.rb +1 -1
- data/lib/text/hyphen/language/et.rb +1 -1
- data/lib/text/hyphen/language/hsb.rb +1 -1
- data/lib/text/hyphen/language/hu1.rb +1 -1
- data/lib/text/hyphen/language/hu2.rb +1 -1
- data/lib/text/hyphen/language/is.rb +1 -1
- data/lib/text/hyphen/language/mn.rb +1 -1
- data/lib/text/hyphen/language/pl.rb +1 -1
- data/test/test_bugs.rb +26 -0
- data/{tests/tc_text_hyphen.rb → test/test_text_hyphen.rb} +2 -8
- data/text-hyphen.gemspec +63 -0
- metadata +214 -82
- data/ChangeLog +0 -4
- data/Changelog +0 -4
- data/INSTALL +0 -6
- data/README +0 -56
@@ -27,7 +27,7 @@
|
|
27
27
|
require 'text/hyphen/language'
|
28
28
|
|
29
29
|
Text::Hyphen::Language::DA = Text::Hyphen::Language.new do |lang|
|
30
|
-
encoding "UTF-8"
|
30
|
+
lang.encoding "UTF-8"
|
31
31
|
# First, we input the patterns containing only `normal' letters (a-z).
|
32
32
|
lang.patterns <<-PATTERNS
|
33
33
|
.ae3 .an3k .an1s .be5la .be1t .bi4tr .der3i .diagno5 .her3 .hoved3 .ne4t5
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'text/hyphen/language/de1'
|
@@ -65,13 +65,11 @@
|
|
65
65
|
# Additional documentation can be found near the end of this file.
|
66
66
|
#
|
67
67
|
#++
|
68
|
-
if defined?(Text::Hyphen::Language::DE)
|
69
|
-
raise LoadError, "Text::Hyphen::Language::DE has already been defined."
|
70
|
-
end
|
71
68
|
|
72
69
|
require 'text/hyphen/language'
|
73
70
|
|
74
|
-
Text::Hyphen::Language::
|
71
|
+
Text::Hyphen::Language::DE1 = Text::Hyphen::Language.new do |lang|
|
72
|
+
lang.isocode = 'de'
|
75
73
|
lang.patterns <<-PATTERNS
|
76
74
|
.aa6l .ab3a4s .ab3ei .abi2 .ab3it .ab1l .ab1r .ab3u .ad3o4r .alti6 .ana3c
|
77
75
|
.an5alg .an1e
|
@@ -719,5 +717,9 @@ s2s3z % ss1z
|
|
719
717
|
##
|
720
718
|
## End of file `dehyphn.tex'.
|
721
719
|
end
|
722
|
-
|
723
|
-
|
720
|
+
|
721
|
+
unless defined? Text::Hyphen::Language::DE
|
722
|
+
Text::Hyphen::Language::DE = Text::Hyphen::Language::DE1
|
723
|
+
Text::Hyphen::Language::GER = Text::Hyphen::Language::DE
|
724
|
+
Text::Hyphen::Language::DEU = Text::Hyphen::Language::DE
|
725
|
+
end
|
@@ -74,13 +74,11 @@
|
|
74
74
|
# For more information see the additional documentation
|
75
75
|
# at the end of this file.
|
76
76
|
#++
|
77
|
-
if defined?(Text::Hyphen::Language::DE)
|
78
|
-
raise LoadError, "Text::Hyphen::Language::DE has already been defined."
|
79
|
-
end
|
80
77
|
|
81
78
|
require 'text/hyphen/language'
|
82
79
|
|
83
|
-
Text::Hyphen::Language::
|
80
|
+
Text::Hyphen::Language::DE2 = Text::Hyphen::Language.new do |lang|
|
81
|
+
lang.isocode = 'de'
|
84
82
|
lang.patterns <<-PATTERNS
|
85
83
|
.aa6l .ab3a4s .ab3ei .abi2 .ab3it .ab1l .ab1r .ab3u .ad3o4r .alti6 .ana3c
|
86
84
|
.an5alg .an1e .ang8s .an1s .ap1p .ar6sc .ar6ta .ar6tei .as2z .au2f1 .au2s3
|
@@ -681,5 +679,8 @@ zu1s8 zu1z 2z1v zw8 z1wal 5zweck zwei3s z1wel z1wer z6werg 8z5wes 1zwi zwi1s
|
|
681
679
|
##
|
682
680
|
## End of file `dehypht.tex'.
|
683
681
|
end
|
684
|
-
|
685
|
-
Text::Hyphen::Language::
|
682
|
+
unless defined? Text::Hyphen::Language::DE
|
683
|
+
Text::Hyphen::Language::DE = Text::Hyphen::Language::DE2
|
684
|
+
Text::Hyphen::Language::GER = Text::Hyphen::Language::DE
|
685
|
+
Text::Hyphen::Language::DEU = Text::Hyphen::Language::DE
|
686
|
+
end
|
@@ -25,7 +25,7 @@
|
|
25
25
|
require 'text/hyphen/language'
|
26
26
|
|
27
27
|
Text::Hyphen::Language::ET = Text::Hyphen::Language.new do |lang|
|
28
|
-
encoding "UTF-8"
|
28
|
+
lang.encoding "UTF-8"
|
29
29
|
lang.patterns <<-PATTERNS
|
30
30
|
.aa4 .aasta5 .ahe4li .al4a .al4gas .antiik5 .ap3l .ap3r .art5r .au3a .eba3
|
31
31
|
.ee4 .eela4 .ek3l .ek5r .gu4a .hie5 .idi4 .inim5a .ise5e .is4o .ja4e .ja4t
|
@@ -36,7 +36,7 @@ end
|
|
36
36
|
require 'text/hyphen/language'
|
37
37
|
|
38
38
|
Text::Hyphen::Language::HU = Text::Hyphen::Language.new do |lang|
|
39
|
-
encoding "UTF-8"
|
39
|
+
lang.encoding "UTF-8"
|
40
40
|
lang.patterns <<-PATTERNS
|
41
41
|
% 1C(s/z/y)V (V <> y)
|
42
42
|
% 1C(f/h/s/z)y occurs at the end of names, so I added some of them
|
@@ -21,7 +21,7 @@ end
|
|
21
21
|
require 'text/hyphen/language'
|
22
22
|
|
23
23
|
Text::Hyphen::Language::HU = Text::Hyphen::Language.new do |lang|
|
24
|
-
encoding "UTF-8"
|
24
|
+
lang.encoding "UTF-8"
|
25
25
|
lang.patterns <<-PATTERNS
|
26
26
|
.a2 .adás1s .ae1 .agyon1 .al1eg .al1e2m .al1e2s .al1ér .al1is .al1os .arc1c
|
27
27
|
.ar2c3ho .atmo1 .az1a2 .az1ám .aze2 .á2 .ál1a2 .ál1e .ál1é2 .ál1i .ál1ok
|
@@ -55,7 +55,7 @@
|
|
55
55
|
require 'text/hyphen/language'
|
56
56
|
|
57
57
|
Text::Hyphen::Language::IS = Text::Hyphen::Language.new do |lang|
|
58
|
-
encoding "UTF-8"
|
58
|
+
lang.encoding "UTF-8"
|
59
59
|
lang.patterns <<-PATTERNS
|
60
60
|
.að3 .aða4 .aðk2 .aðl4a .af3n .af3re .afr3í .af1s4 .agn5ú .al3e .al4l .am4s
|
61
61
|
.an3k .ann4e .ar2 .ar3a4b5 .arth5 .asp3 .aum5a .ám4 .án4a .ba4 .da4 .dam5a
|
@@ -56,7 +56,7 @@
|
|
56
56
|
require 'text/hyphen/language'
|
57
57
|
|
58
58
|
Text::Hyphen::Language::MN = Text::Hyphen::Language.new do |lang|
|
59
|
-
encoding "UTF-8"
|
59
|
+
lang.encoding "UTF-8"
|
60
60
|
lang.patterns <<-PATTERNS
|
61
61
|
.aa2 .in2 .oë2 .oo2 .öö2 .uu2 .üü2 .ää2 aa2j a1d a2di
|
62
62
|
aï2b a1p asaa3 a1t a1f a1x a1c a3c2d a1q a1š a1ţ a2űal 1ba
|
@@ -65,7 +65,7 @@
|
|
65
65
|
require 'text/hyphen/language'
|
66
66
|
|
67
67
|
Text::Hyphen::Language::PL = Text::Hyphen::Language.new do |lang|
|
68
|
-
encoding "UTF-8"
|
68
|
+
lang.encoding "UTF-8"
|
69
69
|
lang.patterns <<-PATTERNS
|
70
70
|
.ćć8 .ćł8 .ćń8 .ćś8 .ćź8 .ćż8 .ć8 .ćb8 .ćc8 .ćd8 .ćf8 .ćg8 .ćh8 .ćj8 .ćk8
|
71
71
|
.ćl8 .ćm8 .ćn8 .ćp8 .ćr8 .ćs8 .ćt8 .ćv8 .ćw8 .ćwier2ć3 .ćx8 .ćz8 .łć8 .łł8
|
data/test/test_bugs.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'text-hyphen'
|
3
|
+
|
4
|
+
class TestTextHyphen < Test::Unit::TestCase
|
5
|
+
def test_rubyforge_9807_28498
|
6
|
+
# http://rubyforge.org/tracker/index.php?func=detail&aid=9807&group_id=294&atid=1195
|
7
|
+
# http://rubyforge.org/tracker/index.php?func=detail&aid=28498&group_id=294&atid=1195
|
8
|
+
txt = "Dampfschifffahrtskapitänsmützenhalterhersteller"
|
9
|
+
pts = [5, 11, 17, 19, 26, 30, 33, 36, 39, 42, 46]
|
10
|
+
viz = "Dampf-schiff-fahrts-ka-pitäns-müt-zen-hal-ter-her-stel-ler"
|
11
|
+
|
12
|
+
de1 = Text::Hyphen.new(:language => 'de')
|
13
|
+
assert_equal pts, de1.hyphenate(txt)
|
14
|
+
assert_equal viz, de1.visualize(txt)
|
15
|
+
|
16
|
+
de2 = Text::Hyphen.new(:language => 'de2')
|
17
|
+
assert_equal pts, de2.hyphenate(txt)
|
18
|
+
assert_equal viz, de2.visualize(txt)
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_rubyforge_28128
|
22
|
+
en_us = Text::Hyphen.new(:language => 'en_us')
|
23
|
+
assert_equal [], en_us.hyphenate("to")
|
24
|
+
assert_equal "to", en_us.visualize("to")
|
25
|
+
end
|
26
|
+
end
|
@@ -1,13 +1,7 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# $Id: tc_text_hyphen.rb,v 1.1 2004/12/20 07:27:24 austin Exp $
|
3
|
-
#++
|
4
|
-
|
5
|
-
$LOAD_PATH.unshift("#{File.dirname(__FILE__)}/../lib") if __FILE__ == $0
|
6
|
-
|
7
1
|
require 'test/unit'
|
8
|
-
require 'text
|
2
|
+
require 'text-hyphen'
|
9
3
|
|
10
|
-
class
|
4
|
+
class TestTextHyphen < Test::Unit::TestCase
|
11
5
|
WORDS = %w(additional declination going leaving maximizes multiple peter
|
12
6
|
playback presents programmable representation)
|
13
7
|
POINTS = [
|
data/text-hyphen.gemspec
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{text-hyphen}
|
5
|
+
s.version = "1.0.2.20110208235554"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Austin Ziegler"]
|
9
|
+
s.date = %q{2011-02-08}
|
10
|
+
s.default_executable = %q{hyphen}
|
11
|
+
s.description = %q{Text::Hyphen will hyphenate words using modified versions of TeX hyphenation
|
12
|
+
patterns.
|
13
|
+
|
14
|
+
Text::Hyphen will properly hyphenate various words according to the rules of
|
15
|
+
the language the word is written in. The algorithm is based on that of the TeX
|
16
|
+
typesetting system by Donald E. Knuth. This is based on the Perl implementation
|
17
|
+
of TeX::Hyphen[1] and the Ruby port[2]. The language hyphenation pattern files
|
18
|
+
are based on the sources available from CTAN[3] as of 2004.12.19 and have been
|
19
|
+
translated by Austin Ziegler.
|
20
|
+
|
21
|
+
This release is 1.0.2. It is a minor bugfix for the RubyGem release of
|
22
|
+
Text::Hyphen to enable the hyphen command-line program. Text::Hyphen represents
|
23
|
+
a significant improvement over its predecessor, TeX::Hyphen.}
|
24
|
+
s.email = ["austin@rubyforge.org"]
|
25
|
+
s.executables = ["hyphen"]
|
26
|
+
s.extra_rdoc_files = ["COPYING.txt", "History.txt", "LICENCE.txt", "Manifest.txt", "README.txt"]
|
27
|
+
s.files = [".autotest", "COPYING.txt", "History.txt", "LICENCE.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/hyphen", "lib/text-hyphen.rb", "lib/text/hyphen.rb", "lib/text/hyphen/language.rb", "lib/text/hyphen/language/ca.rb", "lib/text/hyphen/language/cs.rb", "lib/text/hyphen/language/da.rb", "lib/text/hyphen/language/de.rb", "lib/text/hyphen/language/de1.rb", "lib/text/hyphen/language/de2.rb", "lib/text/hyphen/language/en_uk.rb", "lib/text/hyphen/language/en_us.rb", "lib/text/hyphen/language/es.rb", "lib/text/hyphen/language/et.rb", "lib/text/hyphen/language/eu.rb", "lib/text/hyphen/language/fi.rb", "lib/text/hyphen/language/fr.rb", "lib/text/hyphen/language/ga.rb", "lib/text/hyphen/language/hr.rb", "lib/text/hyphen/language/hsb.rb", "lib/text/hyphen/language/hu1.rb", "lib/text/hyphen/language/hu2.rb", "lib/text/hyphen/language/ia.rb", "lib/text/hyphen/language/id.rb", "lib/text/hyphen/language/is.rb", "lib/text/hyphen/language/it.rb", "lib/text/hyphen/language/la.rb", "lib/text/hyphen/language/mn.rb", "lib/text/hyphen/language/nl.rb", "lib/text/hyphen/language/no1.rb", "lib/text/hyphen/language/no2.rb", "lib/text/hyphen/language/pl.rb", "lib/text/hyphen/language/pt.rb", "lib/text/hyphen/language/sv.rb", "test/test_bugs.rb", "test/test_text_hyphen.rb", "text-hyphen.gemspec"]
|
28
|
+
s.homepage = %q{http://rubyforge.org/projects/text-format/}
|
29
|
+
s.rdoc_options = ["--main", "README.txt"]
|
30
|
+
s.require_paths = ["lib"]
|
31
|
+
s.required_ruby_version = Gem::Requirement.new("< 1.9")
|
32
|
+
s.rubyforge_project = %q{text-format}
|
33
|
+
s.rubygems_version = %q{1.4.2}
|
34
|
+
s.summary = %q{Text::Hyphen will hyphenate words using modified versions of TeX hyphenation patterns}
|
35
|
+
s.test_files = ["test/test_bugs.rb", "test/test_text_hyphen.rb"]
|
36
|
+
|
37
|
+
if s.respond_to? :specification_version then
|
38
|
+
s.specification_version = 3
|
39
|
+
|
40
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
41
|
+
s.add_development_dependency(%q<rubyforge>, [">= 2.0.4"])
|
42
|
+
s.add_development_dependency(%q<hoe-doofus>, ["~> 1.0"])
|
43
|
+
s.add_development_dependency(%q<hoe-gemspec>, ["~> 1.0"])
|
44
|
+
s.add_development_dependency(%q<hoe-git>, ["~> 1.0"])
|
45
|
+
s.add_development_dependency(%q<hoe-seattlerb>, ["~> 1.0"])
|
46
|
+
s.add_development_dependency(%q<hoe>, [">= 2.8.0"])
|
47
|
+
else
|
48
|
+
s.add_dependency(%q<rubyforge>, [">= 2.0.4"])
|
49
|
+
s.add_dependency(%q<hoe-doofus>, ["~> 1.0"])
|
50
|
+
s.add_dependency(%q<hoe-gemspec>, ["~> 1.0"])
|
51
|
+
s.add_dependency(%q<hoe-git>, ["~> 1.0"])
|
52
|
+
s.add_dependency(%q<hoe-seattlerb>, ["~> 1.0"])
|
53
|
+
s.add_dependency(%q<hoe>, [">= 2.8.0"])
|
54
|
+
end
|
55
|
+
else
|
56
|
+
s.add_dependency(%q<rubyforge>, [">= 2.0.4"])
|
57
|
+
s.add_dependency(%q<hoe-doofus>, ["~> 1.0"])
|
58
|
+
s.add_dependency(%q<hoe-gemspec>, ["~> 1.0"])
|
59
|
+
s.add_dependency(%q<hoe-git>, ["~> 1.0"])
|
60
|
+
s.add_dependency(%q<hoe-seattlerb>, ["~> 1.0"])
|
61
|
+
s.add_dependency(%q<hoe>, [">= 2.8.0"])
|
62
|
+
end
|
63
|
+
end
|
metadata
CHANGED
@@ -1,90 +1,222 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.1
|
3
|
-
specification_version: 1
|
4
2
|
name: text-hyphen
|
5
3
|
version: !ruby/object:Gem::Version
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
autorequire:
|
17
|
-
default_executable:
|
4
|
+
hash: 19
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 2
|
10
|
+
version: 1.0.2
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Austin Ziegler
|
14
|
+
autorequire:
|
18
15
|
bindir: bin
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-02-08 00:00:00 -05:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: rubyforge
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
24
28
|
- !ruby/object:Gem::Version
|
25
|
-
|
26
|
-
|
27
|
-
|
29
|
+
hash: 7
|
30
|
+
segments:
|
31
|
+
- 2
|
32
|
+
- 0
|
33
|
+
- 4
|
34
|
+
version: 2.0.4
|
35
|
+
type: :development
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: hoe-doofus
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 15
|
46
|
+
segments:
|
47
|
+
- 1
|
48
|
+
- 0
|
49
|
+
version: "1.0"
|
50
|
+
type: :development
|
51
|
+
version_requirements: *id002
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
name: hoe-gemspec
|
54
|
+
prerelease: false
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ~>
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
hash: 15
|
61
|
+
segments:
|
62
|
+
- 1
|
63
|
+
- 0
|
64
|
+
version: "1.0"
|
65
|
+
type: :development
|
66
|
+
version_requirements: *id003
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: hoe-git
|
69
|
+
prerelease: false
|
70
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
hash: 15
|
76
|
+
segments:
|
77
|
+
- 1
|
78
|
+
- 0
|
79
|
+
version: "1.0"
|
80
|
+
type: :development
|
81
|
+
version_requirements: *id004
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: hoe-seattlerb
|
84
|
+
prerelease: false
|
85
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ~>
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
hash: 15
|
91
|
+
segments:
|
92
|
+
- 1
|
93
|
+
- 0
|
94
|
+
version: "1.0"
|
95
|
+
type: :development
|
96
|
+
version_requirements: *id005
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: hoe
|
99
|
+
prerelease: false
|
100
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
101
|
+
none: false
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
hash: 47
|
106
|
+
segments:
|
107
|
+
- 2
|
108
|
+
- 8
|
109
|
+
- 0
|
110
|
+
version: 2.8.0
|
111
|
+
type: :development
|
112
|
+
version_requirements: *id006
|
113
|
+
description: |-
|
114
|
+
Text::Hyphen will hyphenate words using modified versions of TeX hyphenation
|
115
|
+
patterns.
|
116
|
+
|
117
|
+
Text::Hyphen will properly hyphenate various words according to the rules of
|
118
|
+
the language the word is written in. The algorithm is based on that of the TeX
|
119
|
+
typesetting system by Donald E. Knuth. This is based on the Perl implementation
|
120
|
+
of TeX::Hyphen[1] and the Ruby port[2]. The language hyphenation pattern files
|
121
|
+
are based on the sources available from CTAN[3] as of 2004.12.19 and have been
|
122
|
+
translated by Austin Ziegler.
|
123
|
+
|
124
|
+
This release is 1.0.2. It is a minor bugfix for the RubyGem release of
|
125
|
+
Text::Hyphen to enable the hyphen command-line program. Text::Hyphen represents
|
126
|
+
a significant improvement over its predecessor, TeX::Hyphen.
|
127
|
+
email:
|
128
|
+
- austin@rubyforge.org
|
129
|
+
executables:
|
130
|
+
- hyphen
|
131
|
+
extensions: []
|
132
|
+
|
133
|
+
extra_rdoc_files:
|
134
|
+
- COPYING.txt
|
135
|
+
- History.txt
|
136
|
+
- LICENCE.txt
|
137
|
+
- Manifest.txt
|
138
|
+
- README.txt
|
28
139
|
files:
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
140
|
+
- .autotest
|
141
|
+
- COPYING.txt
|
142
|
+
- History.txt
|
143
|
+
- LICENCE.txt
|
144
|
+
- Manifest.txt
|
145
|
+
- README.txt
|
146
|
+
- Rakefile
|
147
|
+
- bin/hyphen
|
148
|
+
- lib/text-hyphen.rb
|
149
|
+
- lib/text/hyphen.rb
|
150
|
+
- lib/text/hyphen/language.rb
|
151
|
+
- lib/text/hyphen/language/ca.rb
|
152
|
+
- lib/text/hyphen/language/cs.rb
|
153
|
+
- lib/text/hyphen/language/da.rb
|
154
|
+
- lib/text/hyphen/language/de.rb
|
155
|
+
- lib/text/hyphen/language/de1.rb
|
156
|
+
- lib/text/hyphen/language/de2.rb
|
157
|
+
- lib/text/hyphen/language/en_uk.rb
|
158
|
+
- lib/text/hyphen/language/en_us.rb
|
159
|
+
- lib/text/hyphen/language/es.rb
|
160
|
+
- lib/text/hyphen/language/et.rb
|
161
|
+
- lib/text/hyphen/language/eu.rb
|
162
|
+
- lib/text/hyphen/language/fi.rb
|
163
|
+
- lib/text/hyphen/language/fr.rb
|
164
|
+
- lib/text/hyphen/language/ga.rb
|
165
|
+
- lib/text/hyphen/language/hr.rb
|
166
|
+
- lib/text/hyphen/language/hsb.rb
|
167
|
+
- lib/text/hyphen/language/hu1.rb
|
168
|
+
- lib/text/hyphen/language/hu2.rb
|
169
|
+
- lib/text/hyphen/language/ia.rb
|
170
|
+
- lib/text/hyphen/language/id.rb
|
171
|
+
- lib/text/hyphen/language/is.rb
|
172
|
+
- lib/text/hyphen/language/it.rb
|
173
|
+
- lib/text/hyphen/language/la.rb
|
174
|
+
- lib/text/hyphen/language/mn.rb
|
175
|
+
- lib/text/hyphen/language/nl.rb
|
176
|
+
- lib/text/hyphen/language/no1.rb
|
177
|
+
- lib/text/hyphen/language/no2.rb
|
178
|
+
- lib/text/hyphen/language/pl.rb
|
179
|
+
- lib/text/hyphen/language/pt.rb
|
180
|
+
- lib/text/hyphen/language/sv.rb
|
181
|
+
- test/test_bugs.rb
|
182
|
+
- test/test_text_hyphen.rb
|
183
|
+
- text-hyphen.gemspec
|
184
|
+
has_rdoc: true
|
185
|
+
homepage: http://rubyforge.org/projects/text-format/
|
186
|
+
licenses: []
|
187
|
+
|
188
|
+
post_install_message:
|
76
189
|
rdoc_options:
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
190
|
+
- --main
|
191
|
+
- README.txt
|
192
|
+
require_paths:
|
193
|
+
- lib
|
194
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
195
|
+
none: false
|
196
|
+
requirements:
|
197
|
+
- - <
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
hash: 29
|
200
|
+
segments:
|
201
|
+
- 1
|
202
|
+
- 9
|
203
|
+
version: "1.9"
|
204
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
205
|
+
none: false
|
206
|
+
requirements:
|
207
|
+
- - ">="
|
208
|
+
- !ruby/object:Gem::Version
|
209
|
+
hash: 3
|
210
|
+
segments:
|
211
|
+
- 0
|
212
|
+
version: "0"
|
89
213
|
requirements: []
|
90
|
-
|
214
|
+
|
215
|
+
rubyforge_project: text-format
|
216
|
+
rubygems_version: 1.4.2
|
217
|
+
signing_key:
|
218
|
+
specification_version: 3
|
219
|
+
summary: Text::Hyphen will hyphenate words using modified versions of TeX hyphenation patterns
|
220
|
+
test_files:
|
221
|
+
- test/test_bugs.rb
|
222
|
+
- test/test_text_hyphen.rb
|