DEV Community

Discussion on: Who's looking for open source contributors? (July 1st edition)

Collapse
 
kyleboe profile image
Kyle Boe

I'll kick things off with a bit of a different post.

Out of necessity, I forked and upgraded a Ruby API wrapper for the Zoom API (link to docs). I only needed a subset of the API for the project I was working on at the time so I only implemented a portion of it. The rest of the API is not implemented but a solid template for building endpoints is established. This pattern has made it very beginner friendly and I am happy to coach and provide constructive feedback in PRs.

GitHub logo hintmedia / zoom_rb

Ruby API Wrapper for zoom.us API

zoom_rb CircleCI Maintainability Test Coverage

Ruby wrapper gem for zoom.us API (currently v2)

Installation

Add this line to your application's Gemfile:

gem 'zoom_rb'

And then execute:

$ bundle

Or install it yourself as:

$ gem install zoom_rb

Usage

require 'zoom'

Zoom.configure do |c|
  c.api_key = 'xxx'
  c.api_secret = 'xxx'
end

zoom_client = Zoom.new

user_list = zoom_client.user_list
user_list['users'].each do |user|
  user_id = user['id']
  puts zoom_client.meeting_list(host_id: user_id)
end

begin
  user_list = zoom_client.user_list!
rescue Zoom::Error => exception
  puts 'Something went wrong'
end

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request