fanzter / giant_bomb
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
commit 23121c7fcbfaa9df4e2b0ffb1851d37e7d3fefec
tree 116f9aefd5f33d0d6e5e651bc1fd528919057654
parent e5864330a86893614b8c0971976a130e2fe899c8
tree 116f9aefd5f33d0d6e5e651bc1fd528919057654
parent e5864330a86893614b8c0971976a130e2fe899c8
| name | age | message | |
|---|---|---|---|
| |
.document | ||
| |
.gitignore | ||
| |
LICENSE | ||
| |
README.textile | ||
| |
Rakefile | ||
| |
VERSION | ||
| |
giant_bomb.gemspec | ||
| |
lib/ | ||
| |
test/ |
README.textile
GiantBomb!
What?
A simple Ruby library to talk to GiantBomb
It’s super simple right now. All it can do is search games and return the shallow details.
How?
require 'giant_bomb'
gb = GiantBomb::Search.new("api_key")
results = gb.find_game('Halo 3: ODST')
halo = results.first
halo.name => "Halo 3: ODST"
halo.image[:super] => "http://media.giantbomb.com/uploads/1/14735/1101733-20090611232449_halo_3_odst_box_art_super.png"
Install
gem install giant_bomb
Gem hosted on Gemcutter

