Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecate V1 Thesaurus functionality
Oxford Dictionaries is updating their API to a new version which includes quite a few changes: https://developer.oxforddictionaries.com/version2 They are moving the thesaurus functionality to its own endpoint (instead of having part of the entries endpoint). Use `Client#thesaurus` instead. Specifically use `Client#thesaurus` with the `filter` parameter to define what you want. For example: ``` Client.thesaurus( word: 'ace', language: 'en', params: { filter: 'synonyms,antonyms' } ) \# Or for only synonyms/antonyms Client.thesaurus( word: 'ace', language: 'en', params: { filter: 'synonyms' } ) ```
- Loading branch information