0.01
No commit activity in last 3 years
No release in over 3 years
A wrapper for the mention.net API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
~> 10.1
~> 2.14
~> 1.14

Runtime

~> 1.6.7
~> 1.0
 Project Readme

Version Dependencies Build Status Code Climate

Mention::Api

A nice ruby interface to wrap the Mention.net API.

Installation

Add this line to your application's Gemfile:

gem 'mention-api'

And then execute:

$ bundle

Or install it yourself as:

$ gem install mention-api

Developing

There are a list of acceptance specs that run against the live mention service. In order to run these specs you will need to create a file at spec/fixtures/credentials.yml. The contents should look like this:

---
:account_id: your-account-id-here
:access_token: your-access-token-here

The unit tests for this project are under spec/lib. These need to be run separately from the acceptance tests since they use webmock to stub out all of the HTTP requests, whereas the acceptance tests specifically need to reach out the actual web service.

rspec spec/lib
...

rspec spec/acceptance
...

Contributing

  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