RubyFlow The Ruby and Rails community linklog

Rapidash - a ruby gem to rapidly build your API client

I have created Rapidash a ruby gem to help you make an API client for your RESTful API in a few lines of code.

class Repos < Rapidash::Base end

class User < Rapidash::Base resource :repos end

class Client < Rapidash::Client resource :users method :http site “https://github.com” end

Client.new.users(“Gazler”).repos! #Output the repos that belong to Gazler </code>

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in