The StartupStats Client Ruby Gem

Installation

gem install startupstats

Documentation

Coming soon!

Configuration

Given that this is a library of multiple API clients, you must configure each client that you have been granted access to individually. This is straight-forward. Here is an example of configuring the Formd API for usage:

StartupStats::Formd.configure do |config|
    config.access_token = "2f309awf30a9wf3jaw39faaf903ja3"
    config.endpoint = "http://formd.startupstats.com/"
end

After configuration, you can make calls directly to the API that you have setup. Here's an example:

@filings = StartupStats::Formd.filings( start = 0 , limit = 5 )