Launchrock - Ruby Gem
This gem integrates with the launchrock API's documented here. The API isn't well documented, and this also includes integration with undocumented API's. This means parts of this gem could break with no notice whatsoever. Use at your own risk.
Usage
# First authenticate and fetch the user session
client = Launchrock::Client.find_by_email_and_password('testman@yoloswag.com', 'testpassword-oooo')
site = client.site_named(args[:site_name])
raise "No site info found" unless site
puts site.users.map(&:to_hash).inspect