ContextIO is a Ruby wrapper for the Context.IO web service.
Context.IO is the missing email API that makes it easy and fast to integrate your user's email data in your application.
ContextIO follows the rules of Semantic Versioning and uses TomDoc for inline documentation.
The best way to install ContextIO is through Rubygems:
$ [sudo] gem install context-io
If you're installing from source, you can use Bundler to pick up all the gems:
$ bundle install
The ContextIO classes map pretty much one-to-one to the Context.IO API resources, which you can find on their documentation site.
ContextIO uses two-legged OAuth for authentication, which means you need to get an API key from Context.IO. The API key consists of a consumer key and a consumer secret, and once you have them you can set up ContextIO like this:
ContextIO.configure do |config|
config.consumer_key = 'consumer key'
config.consumer_secret = 'consumer secret'
end
Once you're authenticated, you can get an Account
object, which is what you
will be dealing with most of the time.
account = ContextIO::Account.all.first
You can also find accounts matching a given email address.
account = ContextIO::Account.all(:email => 'me@example.org').first
In the spirit of free software, everyone is encouraged to help improve this project.
Here are some ways you can contribute:
- by using alpha, beta and prerelease versions
- by reporting bugs
- by suggesting new features
- by writing or editing documentation
- by writing specifications
- by writing code (no patch is too small: fix typos, add comments, clean up inconsistent whitespace)
- by refactoring code
- by closing issues
- by reviewing patches
We use the GitHub issue tracker to track bugs and features. Before submitting a bug report or feature request, check to make sure it hasn't already been submitted. You can indicate support for an existing issue by writing a comment saying you have the same issue (please include what version of the gem you are using, as well as what version of ruby). When submitting a bug report, please include a [gist][gist] that includes a stack trace and any details that may be necessary to reproduce the bug, including your gem version, Ruby version and operating system. Ideally, a bug report should include a pull request with failing specs.
- Fork the project.
- Create a topic branch.
- Implement your feature or bug fix.
- Add documentation for your feature or bug fix.
- Run
bundle exec rake rdoc
. If your changes are not 100% documented, go back to step 4. - Add specs for your feature or bug fix.
- Run
bundle exec rake spec
. If your changes are not 100% covered, go back to step 6. - Commit your changes. If necessary, merge in upstream and rebase your changes. Push your changes.
- Submit a pull request. Please do not include changes to the gemspec, version or history file.
Copyright (c) 2012 Henrik Hodne. See LICENSE for details.