README.md in hunspell-0.1.4 vs README.md in hunspell-0.1.5
- old
+ new
@@ -1,6 +1,6 @@
-# Hunspell
+# Hunspell [![Build Status](https://travis-ci.org/segabor/Hunspell.svg?branch=master)](https://travis-ci.org/segabor/Hunspell)
Ruby interface to hunspell spell checker
Copyright 2007, Gabor SEBESTYEN
## WHAT IS THIS?
@@ -55,10 +55,10 @@
require "Hunspell" # inject Hunspell class to Ruby namespace
# instantiate Hunspell with Hungarian affix and dictionary files
#
-sp = Hunspell.new("hu.aff", "hu.dic")
+sp = Hunspell.new("hu_HU.aff", "hu_HU.dic")
# spell check Hungarian word 'ablak' (window) => true
#
puts "Is 'ablak' correct? #{sp.spellcheck('ablak')}"