hunspell 0.1.5 → 0.1.6

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/extconf.rb +1 -1
  4. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c308045f23e29df48f5e8a7809ed37c93446b332
4
- data.tar.gz: 5d4c52272cfc819bf32db405d8259f502af55898
3
+ metadata.gz: b419bc05f51b1ccfeafd8c5350e6adecfa13bca4
4
+ data.tar.gz: b293f485c0859389301a36866fb2a6ba7844241f
5
5
  SHA512:
6
- metadata.gz: 1d369b2961a256a2c675c63c69bba9e97aad5676e3b64b61f82b2d4ad6c2bcf9854568d302422367308c08e050e97cd84851554610ba60ee392d9e35d9ad314d
7
- data.tar.gz: 062a7e9cf35f56d23a0e2918ced11e1e9da6ca83d1164dfca420943636b1e46ae303bcb018cfdf59c64db0ee0cd502d10b56751b999521c5e7f5c5e52b1e4372
6
+ metadata.gz: 2d937f1edb0819240990ebd015d5500170ba8dce66473131c937645b8bac7e92f2a205a2babea747db429cf984035f10b777c375cc7a02214b09b64602ae29f8
7
+ data.tar.gz: bc697ecf87f9504613d401cbcc2d7f74414a05dd028cf0ab12c9d6d3f57975e765e585847d962972d32eeaa46990edb0b387fd965ea9734e2d655d4399fb3697
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Hunspell [![Build Status](https://travis-ci.org/segabor/Hunspell.svg?branch=master)](https://travis-ci.org/segabor/Hunspell)
1
+ # Hunspell [![Gem Version](https://badge.fury.io/rb/hunspell.svg)](https://badge.fury.io/rb/hunspell) [![Build Status](https://travis-ci.org/segabor/Hunspell.svg?branch=master)](https://travis-ci.org/segabor/Hunspell)
2
2
 
3
3
  Ruby interface to hunspell spell checker
4
4
  Copyright 2007, Gabor SEBESTYEN
data/extconf.rb CHANGED
@@ -23,7 +23,7 @@ HUNSPELL_TEST_HEADERS = ['hunspell/hunspell.h']
23
23
  HUNSPELL_TEST_FUNCTION = 'Hunspell_create'
24
24
 
25
25
  # Hunspell libraries to test for, in order of precedence
26
- HUNSPELL_LIBRARIES = ['hunspell-1.5', 'hunspell-1.4', 'hunspell-1.3']
26
+ HUNSPELL_LIBRARIES = %w(1.6 1.5 1.4 1.3).map {|ver| "hunspell-#{ver}"}
27
27
 
28
28
  HUNSPELL_LIBRARIES.each do |library|
29
29
  dir_config(library, HEADER_DIRS, LIB_DIRS)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hunspell
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gábor SEBESTYÉN
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-05 00:00:00.000000000 Z
11
+ date: 2016-12-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  Hunspell is an easy native Ruby interface to the famous Hunspell spell checker
@@ -30,7 +30,8 @@ files:
30
30
  - hunspell.rb
31
31
  - test/test_hunspell.rb
32
32
  homepage: https://github.com/segabor/Hunspell
33
- licenses: []
33
+ licenses:
34
+ - LGPL-3.0
34
35
  metadata: {}
35
36
  post_install_message:
36
37
  rdoc_options: []