Update documentation
4 files changed, 19 insertions(+), 26 deletions(-)

M README.md
M README.rdoc
M lib/wordnet.rb
M lib/wordnet/sumoterm.rb
M README.md +1 -1
@@ 1,1 1,1 @@ 
-The README is in RDoc format, which Bitbucket doesn't support; [see the source](https://bitbucket.org/ged/ruby-wordnet/src/3db62d5ed69878e8e7c36795d3379291db0402d6/README.rdoc?at=default).
  No newline at end of file
+The README is in RDoc format, which Bitbucket/Github doesn't support; [see the source](https://bitbucket.org/ged/ruby-wordnet/src/3db62d5ed69878e8e7c36795d3379291db0402d6/README.rdoc?at=default).
  No newline at end of file

          
M README.rdoc +14 -14
@@ 5,18 5,18 @@ 
 == Description
 
 This library is a Ruby interface to WordNet®[http://wordnet.princeton.edu/].
-WordNet® is an online lexical reference system whose design is inspired
-by current psycholinguistic theories of human lexical memory. English
-nouns, verbs, adjectives and adverbs are organized into synonym sets, each
-representing one underlying lexical concept. Different relations link
-the synonym sets.
+WordNet® is an online lexical reference system whose design is inspired by
+current psycholinguistic theories of human lexical memory. English nouns,
+verbs, adjectives and adverbs are organized into synonym sets, each
+representing one underlying lexical concept. Different relations link the
+synonym sets.
 
-This library uses WordNet-SQL[http://wnsql.sourceforge.net/], which is a
-conversion of the lexicon flatfiles into a relational database format. You
-can either install the 'wordnet-defaultdb' gem, which packages up the
-SQLite3 version of WordNet-SQL, or install your own and point the lexicon
-at it by passing 
-{Sequel connection parameters}[http://sequel.rubyforge.org/rdoc/files/doc/opening_databases_rdoc.html]
+This library uses SqlUNET[http://sqlunet.sourceforge.net/], which is a
+conversion of the WordNet (along with a number of other linguistic databases)
+lexicon flatfiles into a relational database format. You can either install the
+'wordnet-defaultdb' gem, which packages up the SQLite3 version of SqlUNet,
+or install your own and point the lexicon at it by passing {Sequel connection
+parameters}[http://sequel.jeremyevans.net/rdoc/files/doc/opening_databases_rdoc.html]
 to the constructor.
 
 === Usage

          
@@ 53,9 53,9 @@ mapping:
 [WordNet::SumoTerm]      {Suggested Upper Merged Ontology}[http://www.ontologyportal.org/]
                          terms, with associations back to related Synsets.
 
-This is only supported by a subset of the WordNetSQL databases, and there
-is a fair amount of work left to be done before it's really functional. Drop
-me a note if you're interested in working on this.
+As mentioned above, SqlUNet has done an amazing job of linking up a number of
+other useful linguistic lexicons via WordNet synsets. I plan on adding support
+for at minimum VerbNet, FrameNet, and PropBank.
 
 
 == Requirements

          
M lib/wordnet.rb +3 -9
@@ 4,9 4,9 @@ 
 require 'loggability'
 require 'sequel'
 
-# This is a Ruby interface to the WordNet® lexical database. It uses the WordNet-SQL
-# project's databases instead of reading from the canonical flatfiles for speed and
-# easy modification.
+# This is a Ruby interface to the WordNet® lexical database. It uses the SqlUNet
+# project's databases instead of reading from the canonical flatfiles for speed,
+# easy modification, and correlation with other linguistic lexicons.
 module WordNet
 	extend Loggability
 

          
@@ 20,10 20,6 @@ module WordNet
 	# VCS revision
 	REVISION = %q$Revision: $
 
-	# Abort if not >=2.2.0
-	abort "This version of WordNet requires Ruby 2.2.0 or greater." unless
-		RUBY_VERSION >= '2.2.0'
-
 
 	### Lexicon exception - something has gone wrong in the internals of the
 	### lexicon.

          
@@ 38,7 34,6 @@ module WordNet
 	include WordNet::Constants
 
 	### Get the WordNet version.
-	### @return [String] the library's version
 	def self::version_string( include_buildnum=false )
 		vstring = "%s %s" % [ self.name, VERSION ]
 		vstring << " (build %s)" % [ REVISION[/: ([[:xdigit:]]+)/, 1] || '0' ] if include_buildnum

          
@@ 79,6 74,5 @@ module WordNet
 	Other     = :s
 
 
-
 end # module WordNet
 

          
M lib/wordnet/sumoterm.rb +1 -2
@@ 8,8 8,7 @@ require 'wordnet/constants'
 
 # Experimental support for the WordNet mapping for the {Suggested Upper Merged
 # Ontology}[http://www.ontologyportal.org/] (SUMO).
-# This is still a work in progress, and isn't supported by all of the WordNet-SQL
-# databases.
+# It's still a work in progress.
 class WordNet::SumoTerm < WordNet::Model( :sumoterms )
 	include WordNet::Constants