Skip to content

Instantly share code, notes, and snippets.

@neurotech
Created December 17, 2012 00:27
Show Gist options
  • Save neurotech/4314578 to your computer and use it in GitHub Desktop.
Save neurotech/4314578 to your computer and use it in GitHub Desktop.
GB API Question
require 'rubygems'
require 'httparty'
require 'ap'
class GiantBomb
include HTTParty
base_uri 'api.giantbomb.com'
default_params :api_key => 'SECRET', :format => 'json'
def self.thing(resource, id)
get("/#{resource}/#{id}/")
end
end
ap GiantBomb.thing('character', 248)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment