words 0.4.5 → 0.4.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.
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/words.gemspec +3 -3
- metadata +4 -4
data/Rakefile
CHANGED
|
@@ -6,8 +6,8 @@ begin
|
|
|
6
6
|
require 'jeweler'
|
|
7
7
|
Jeweler::Tasks.new do |gem|
|
|
8
8
|
gem.name = "words"
|
|
9
|
-
gem.summary = %Q{A Fast & Easy to use interface to WordNet
|
|
10
|
-
gem.description = %Q{Words, with both pure ruby & tokyo-cabinate backends, implements a fast interface to Wordnet
|
|
9
|
+
gem.summary = %Q{A Fast & Easy to use interface to WordNet with cross ruby distribution compatibility.}
|
|
10
|
+
gem.description = %Q{Words, with both pure ruby & tokyo-cabinate backends, implements a fast interface to Wordnet over the same easy-to-use API. The FFI backend makes use of Tokyo Cabinet and the FFI interface, rufus-tokyo, to provide cross ruby distribution compatability and blistering speed. The pure ruby interface operates on a special ruby optimised index along with the basic dictionary files provided by WordNet. I have attempted to provide ease of use in the form of a simple yet powerful api and installation is a sintch!}
|
|
11
11
|
gem.email = "roja@arbia.co.uk"
|
|
12
12
|
gem.homepage = "http://github.com/roja/words"
|
|
13
13
|
gem.authors = ["Roja Buck"]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.6
|
data/words.gemspec
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{words}
|
|
8
|
-
s.version = "0.4.
|
|
8
|
+
s.version = "0.4.6"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Roja Buck"]
|
|
12
12
|
s.date = %q{2012-09-22}
|
|
13
13
|
s.default_executable = %q{build_wordnet}
|
|
14
|
-
s.description = %q{Words, with both pure ruby & tokyo-cabinate backends, implements a fast interface to Wordnet
|
|
14
|
+
s.description = %q{Words, with both pure ruby & tokyo-cabinate backends, implements a fast interface to Wordnet over the same easy-to-use API. The FFI backend makes use of Tokyo Cabinet and the FFI interface, rufus-tokyo, to provide cross ruby distribution compatability and blistering speed. The pure ruby interface operates on a special ruby optimised index along with the basic dictionary files provided by WordNet. I have attempted to provide ease of use in the form of a simple yet powerful api and installation is a sintch!}
|
|
15
15
|
s.email = %q{roja@arbia.co.uk}
|
|
16
16
|
s.executables = ["build_wordnet"]
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -39,7 +39,7 @@ Gem::Specification.new do |s|
|
|
|
39
39
|
s.require_paths = ["lib"]
|
|
40
40
|
s.rubyforge_project = %q{words}
|
|
41
41
|
s.rubygems_version = %q{1.3.6}
|
|
42
|
-
s.summary = %q{A Fast & Easy to use interface to WordNet
|
|
42
|
+
s.summary = %q{A Fast & Easy to use interface to WordNet with cross ruby distribution compatibility.}
|
|
43
43
|
|
|
44
44
|
if s.respond_to? :specification_version then
|
|
45
45
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 4
|
|
8
|
-
-
|
|
9
|
-
version: 0.4.
|
|
8
|
+
- 6
|
|
9
|
+
version: 0.4.6
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Roja Buck
|
|
@@ -31,7 +31,7 @@ dependencies:
|
|
|
31
31
|
version: 2.11.0
|
|
32
32
|
type: :development
|
|
33
33
|
version_requirements: *id001
|
|
34
|
-
description:
|
|
34
|
+
description: Words, with both pure ruby & tokyo-cabinate backends, implements a fast interface to Wordnet over the same easy-to-use API. The FFI backend makes use of Tokyo Cabinet and the FFI interface, rufus-tokyo, to provide cross ruby distribution compatability and blistering speed. The pure ruby interface operates on a special ruby optimised index along with the basic dictionary files provided by WordNet. I have attempted to provide ease of use in the form of a simple yet powerful api and installation is a sintch!
|
|
35
35
|
email: roja@arbia.co.uk
|
|
36
36
|
executables:
|
|
37
37
|
- build_wordnet
|
|
@@ -85,6 +85,6 @@ rubyforge_project: words
|
|
|
85
85
|
rubygems_version: 1.3.6
|
|
86
86
|
signing_key:
|
|
87
87
|
specification_version: 3
|
|
88
|
-
summary:
|
|
88
|
+
summary: A Fast & Easy to use interface to WordNet with cross ruby distribution compatibility.
|
|
89
89
|
test_files: []
|
|
90
90
|
|