spell_checker 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README +8 -1
  2. data/lib/spell_checker/dictionary.rb +1 -1
  3. metadata +4 -4
data/README CHANGED
@@ -1,6 +1,13 @@
1
1
 
2
- h1 Spell Checker
2
+ h1. Spell Checker
3
+
4
+ h2. Intro
3
5
 
4
6
  Simple spell checker using word stemming. A basic word list is used to match words against. Word stemming is used to reduce the size of the list and be a bit smarter about the way we match the words.
5
7
 
8
+ h2. Installation
9
+
10
+ Install the spellchecker as a gem
11
+
12
+ bq. gem install spell_checker
6
13
 
@@ -28,7 +28,7 @@ class TextDictionary < Dictionary
28
28
  end
29
29
 
30
30
  def word_exists?( word )
31
- unles
31
+
32
32
  File.open(@custom_file, "w") unless File.exists?(@custom_file)
33
33
  File.open(@base_file, "w") unless File.exists?(@base_file)
34
34
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Stewart McKee
@@ -30,7 +30,7 @@ dependencies:
30
30
  type: :runtime
31
31
  version_requirements: *id001
32
32
  description:
33
- email: stewart.mckee@vamosa.com
33
+ email: stewart@theizone.co.uk
34
34
  executables: []
35
35
 
36
36
  extensions: []
@@ -48,7 +48,7 @@ files:
48
48
  - lib/spell_checker.rb
49
49
  - README
50
50
  has_rdoc: false
51
- homepage: http://www.vamosa.com
51
+ homepage: http://rockwellcottage.com
52
52
  licenses: []
53
53
 
54
54
  post_install_message: