maddox / giant_bomb forked from fanzter/giant_bomb
- Source
- Commits
- Network (2)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| 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

