0.02
No commit activity in last 3 years
No release in over 3 years
Ruby SDK for interacting with the Medium API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Build Status Code Climate Test Coverage API Testing

Medium SDK for Ruby

This repository contains the open source SDK for integrating Medium's API into your Ruby app.

Installation

Add this line to your application's Gemfile:

gem 'medium'

And then execute:

$ bundle

Or install it yourself as:

$ gem install medium-sdk-ruby

Usage

Create a client, then call commands on it.

require 'medium'

# If you have a self-issued access token, you can create a new client directly:
client = Medium::Client.new integration_token: 'example_token'

# Get profile details of the user identified by the access token.
client.users.me

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Questions, comments, bug reports, and pull requests are all welcomed on Github at https://github.com/kkirsche/medium-sdk-ruby.

Authors