0.0
No commit activity in last 3 years
No release in over 3 years
A Lita handler for dictionary functionality backed by Wordnik.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.3
>= 0
>= 3.0.0

Runtime

>= 4.0
 Project Readme

lita-wordnik

Build Status Code Climate Coverage Status

lita-wordnik is a handler for Lita that adds dictionary functionality backed by Wordnik.

Installation

Add lita-wordnik to your Lita instance's Gemfile:

gem "lita-wordnik"

Configuration

Required attributes

  • api_key (String) - Your API key for Wordnik. Register for one at the Wordnik Developer page.

Example

Lita.configure do |config|
  config.handlers.wordnik.api_key = "abc123"
end

Usage

To get the definition for a word:

Lita: define WORD

To get synonyms for a word:

Lita: synonyms WORD

or

Lita: words like WORD

To get antonyms for a word:

Lita: antonyms WORD

or

Lita: words unlike WORD

License

MIT