words 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
data/words.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{words}
8
- s.version = "0.3.1"
8
+ s.version = "0.4.0"
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
- s.date = %q{2010-01-18}
12
+ s.date = %q{2010-02-10}
13
13
  s.default_executable = %q{build_wordnet}
14
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}
@@ -26,9 +26,15 @@ Gem::Specification.new do |s|
26
26
  "VERSION",
27
27
  "bin/build_wordnet",
28
28
  "examples.rb",
29
+ "lib/evocations.rb",
30
+ "lib/homographs.rb",
31
+ "lib/relation.rb",
32
+ "lib/synset.rb",
33
+ "lib/wordnet_connection.rb",
34
+ "lib/wordnet_connectors/pure_wordnet_connection.rb",
35
+ "lib/wordnet_connectors/tokyo_wordnet_connection.rb",
29
36
  "lib/words.rb",
30
- "test/helper.rb",
31
- "test/test_words.rb",
37
+ "spec/words_spec.rb",
32
38
  "words.gemspec"
33
39
  ]
34
40
  s.homepage = %q{http://github.com/roja/words}
@@ -38,8 +44,7 @@ Gem::Specification.new do |s|
38
44
  s.rubygems_version = %q{1.3.5}
39
45
  s.summary = %q{A Fast & Easy to use interface to WordNet® with cross ruby distribution compatability.}
40
46
  s.test_files = [
41
- "test/test_words.rb",
42
- "test/helper.rb"
47
+ "spec/words_spec.rb"
43
48
  ]
44
49
 
45
50
  if s.respond_to? :specification_version then
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: words
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roja Buck
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-18 00:00:00 +00:00
12
+ date: 2010-02-10 00:00:00 +00:00
13
13
  default_executable: build_wordnet
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -39,9 +39,15 @@ files:
39
39
  - VERSION
40
40
  - bin/build_wordnet
41
41
  - examples.rb
42
+ - lib/evocations.rb
43
+ - lib/homographs.rb
44
+ - lib/relation.rb
45
+ - lib/synset.rb
46
+ - lib/wordnet_connection.rb
47
+ - lib/wordnet_connectors/pure_wordnet_connection.rb
48
+ - lib/wordnet_connectors/tokyo_wordnet_connection.rb
42
49
  - lib/words.rb
43
- - test/helper.rb
44
- - test/test_words.rb
50
+ - spec/words_spec.rb
45
51
  - words.gemspec
46
52
  has_rdoc: true
47
53
  homepage: http://github.com/roja/words
@@ -72,5 +78,4 @@ signing_key:
72
78
  specification_version: 3
73
79
  summary: "A Fast & Easy to use interface to WordNet\xC2\xAE with cross ruby distribution compatability."
74
80
  test_files:
75
- - test/test_words.rb
76
- - test/helper.rb
81
+ - spec/words_spec.rb
data/test/helper.rb DELETED
@@ -1,9 +0,0 @@
1
- require 'rubygems'
2
- require 'test/unit'
3
-
4
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
5
- $LOAD_PATH.unshift(File.dirname(__FILE__))
6
- require 'words'
7
-
8
- class Test::Unit::TestCase
9
- end
data/test/test_words.rb DELETED
@@ -1,7 +0,0 @@
1
- require 'helper'
2
-
3
- class TestWords < Test::Unit::TestCase
4
- should "probably rename this file and start testing for real" do
5
- flunk "hey buddy, you should probably rename this file and start testing for real"
6
- end
7
- end