Dictionary API or Library
api, dictionary, ruby
Solution
Ruby-WordNet sounds like it does what you're looking for:
Ruby-WordNet is a Ruby interface to the WordNet® Lexical Database. 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.
Problem
Does anyone know of a good dictionary API or ruby library to lookup the definitions of words? I'm thinking it should work something like: - I call get_definition(word) - It returns the definition for that word (ideally in some way to easily format the definition for display. Thanks