moby 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +28 -4
- data/lib/moby.rb +2 -1
- data/lib/moby/hyphenator.rb +24 -0
- data/lib/moby/version.rb +1 -1
- data/share/moby/hyphenation/aaREADME.txt +356 -0
- data/share/moby/hyphenation/mhyph.UTF-8.txt +187175 -0
- data/share/moby/hyphenation/mhyph.txt +187175 -0
- data/share/moby/word-lists/ACRONYMS.TXT +6213 -0
- data/share/moby/word-lists/COMMON.TXT +74550 -0
- data/share/moby/word-lists/COMPOUND.TXT +256772 -0
- data/share/moby/word-lists/CROSSWD.TXT +113809 -0
- data/share/moby/word-lists/CRSWD-D.TXT +4160 -0
- data/share/moby/word-lists/FICTION.TXT +467 -0
- data/share/moby/word-lists/FREQ-INT.TXT +1002 -0
- data/share/moby/word-lists/FREQ.TXT +1003 -0
- data/share/moby/word-lists/KJVFREQ.TXT +1185 -0
- data/share/moby/word-lists/NAMES-F.TXT +4946 -0
- data/share/moby/word-lists/NAMES-M.TXT +3897 -0
- data/share/moby/word-lists/NAMES.TXT +21986 -0
- data/share/moby/word-lists/OFTENMIS.TXT +366 -0
- data/share/moby/word-lists/PLACES.TXT +10196 -0
- data/share/moby/word-lists/SINGLE.TXT +354984 -0
- data/share/moby/word-lists/USACONST.TXT +832 -0
- data/share/moby/word-lists/aaREADME.txt +413 -0
- data/spec/moby/hyphenator_spec.rb +47 -0
- data/spec/moby/parts_of_speech_spec.rb +0 -1
- data/spec/spec_helper.rb +1 -0
- metadata +26 -4
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: moby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-02-
|
12
|
+
date: 2012-02-02 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
16
|
-
requirement: &
|
16
|
+
requirement: &11763860 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *11763860
|
25
25
|
description: Ruby interface for the world's largest free phonetic database
|
26
26
|
email:
|
27
27
|
- dan.richert@gmail.com
|
@@ -36,12 +36,34 @@ files:
|
|
36
36
|
- README.md
|
37
37
|
- Rakefile
|
38
38
|
- lib/moby.rb
|
39
|
+
- lib/moby/hyphenator.rb
|
39
40
|
- lib/moby/parts_of_speech.rb
|
40
41
|
- lib/moby/version.rb
|
41
42
|
- moby.gemspec
|
43
|
+
- share/moby/hyphenation/aaREADME.txt
|
44
|
+
- share/moby/hyphenation/mhyph.UTF-8.txt
|
45
|
+
- share/moby/hyphenation/mhyph.txt
|
42
46
|
- share/moby/parts-of-speech/aaREADME.txt
|
43
47
|
- share/moby/parts-of-speech/mobypos.UTF-8.txt
|
44
48
|
- share/moby/parts-of-speech/mobypos.txt
|
49
|
+
- share/moby/word-lists/ACRONYMS.TXT
|
50
|
+
- share/moby/word-lists/COMMON.TXT
|
51
|
+
- share/moby/word-lists/COMPOUND.TXT
|
52
|
+
- share/moby/word-lists/CROSSWD.TXT
|
53
|
+
- share/moby/word-lists/CRSWD-D.TXT
|
54
|
+
- share/moby/word-lists/FICTION.TXT
|
55
|
+
- share/moby/word-lists/FREQ-INT.TXT
|
56
|
+
- share/moby/word-lists/FREQ.TXT
|
57
|
+
- share/moby/word-lists/KJVFREQ.TXT
|
58
|
+
- share/moby/word-lists/NAMES-F.TXT
|
59
|
+
- share/moby/word-lists/NAMES-M.TXT
|
60
|
+
- share/moby/word-lists/NAMES.TXT
|
61
|
+
- share/moby/word-lists/OFTENMIS.TXT
|
62
|
+
- share/moby/word-lists/PLACES.TXT
|
63
|
+
- share/moby/word-lists/SINGLE.TXT
|
64
|
+
- share/moby/word-lists/USACONST.TXT
|
65
|
+
- share/moby/word-lists/aaREADME.txt
|
66
|
+
- spec/moby/hyphenator_spec.rb
|
45
67
|
- spec/moby/parts_of_speech_spec.rb
|
46
68
|
- spec/moby_spec.rb
|
47
69
|
- spec/spec_helper.rb
|