Skip to content

Instantly share code, notes, and snippets.

@inf0rmer
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inf0rmer/78a84c0faa1a087ddf24 to your computer and use it in GitHub Desktop.
Save inf0rmer/78a84c0faa1a087ddf24 to your computer and use it in GitHub Desktop.
Blanket simple usage
require 'blanket'
github = Blanket.wrap("https://api.github.com")
# Get some user's info
user = github.users('inf0rmer').get
user.login
# => "inf0rmer"
# Get a user's repos
github.users('inf0rmer').repos.get
# => [{
# "id": 20000073,
# "name": "BAPersistentOperationQueue",
# ...
# }, ...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment