README.md in cinch-wikipedia-0.0.1 vs README.md in cinch-wikipedia-1.0.0

- old
+ new

@@ -1,7 +1,13 @@ # Cinch::Plugins::Wikipedia +[![Gem Version](https://badge.fury.io/rb/cinch-wikipedia.png)](http://badge.fury.io/rb/cinch-wikipedia) +[![Dependency Status](https://gemnasium.com/bhaberer/cinch-wikipedia.png)](https://gemnasium.com/bhaberer/cinch-wikipedia) +[![Build Status](https://travis-ci.org/bhaberer/cinch-wikipedia.png?branch=master)](https://travis-ci.org/bhaberer/cinch-wikipedia) +[![Coverage Status](https://coveralls.io/repos/bhaberer/cinch-wikipedia/badge.png?branch=master)](https://coveralls.io/r/bhaberer/cinch-wikipedia?branch=master) +[![Code Climate](https://codeclimate.com/github/bhaberer/cinch-wikipedia.png)](https://codeclimate.com/github/bhaberer/cinch-wikipedia) + Cinch plugin to query wikipedia. ## Installation Add this line to your application's Gemfile: @@ -16,13 +22,17 @@ $ gem install cinch-wikipedia ## Usage -Just add th plugin to your list: +Just add the plugin to your list: - c.plugins.plugins = [Cinch::Plugins::Wikipedia] + @bot = Cinch::Bot.new do + configure do |c| + c.plugins.plugins = [Cinch::Plugins::Wikipedia] + end + end Then in channel use .wiki: .wiki kitten @@ -31,5 +41,11 @@ 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request + +## Changelog + +* v1.0.0 + * Added checks for terms that are not found and disambig pages. + * Tests!