hunspell 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/extconf.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b419bc05f51b1ccfeafd8c5350e6adecfa13bca4
|
4
|
+
data.tar.gz: b293f485c0859389301a36866fb2a6ba7844241f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 =
|
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.
|
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-
|
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: []
|