Skip to content

Instantly share code, notes, and snippets.

View pboos's full-sized avatar

Patrick Boos pboos

View GitHub Profile
require 'httparty'
require 'json'
class Crashlytics
include HTTParty
base_uri 'https://api.crashlytics.com/api/v2'
def session(email, password)
self.class.post('/session.json',
body: {email: email, password:password}.to_json,