Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkirsche/medium-sdk-ruby
Ruby SDK for Medium API
https://github.com/kkirsche/medium-sdk-ruby
Last synced: about 1 month ago
JSON representation
Ruby SDK for Medium API
- Host: GitHub
- URL: https://github.com/kkirsche/medium-sdk-ruby
- Owner: kkirsche
- License: apache-2.0
- Created: 2015-10-09T13:04:06.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-25T20:56:46.000Z (over 7 years ago)
- Last Synced: 2024-08-10T08:17:04.003Z (5 months ago)
- Language: Ruby
- Size: 34.2 KB
- Stars: 15
- Watchers: 2
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/kkirsche/medium-sdk-ruby.svg)](https://travis-ci.org/kkirsche/medium-sdk-ruby) [![Code Climate](https://codeclimate.com/github/kkirsche/medium-sdk-ruby/badges/gpa.svg)](https://codeclimate.com/github/kkirsche/medium-sdk-ruby) [![Test Coverage](https://codeclimate.com/github/kkirsche/medium-sdk-ruby/badges/coverage.svg)](https://codeclimate.com/github/kkirsche/medium-sdk-ruby/coverage)
[![API Testing](https://img.shields.io/badge/API%20Test-RapidAPI-blue.svg)](https://rapidapi.com/package/Medium/functions?utm_source=MediumGithub&utm_medium=button&utm_content=Vender_GitHub)# 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:
```ruby
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.
```ruby
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](https://rubygems.org).
## Contributing
Questions, comments, bug reports, and pull requests are all welcomed on Github at https://github.com/kkirsche/medium-sdk-ruby.
## Authors
* [Kevin Kirsche](https://github.com/kkirsche)