Mtgapi

Build Status

Simple gem for playing with the community Magic the Gathering API

Installation

Add this line to your application's Gemfile:

gem 'mtgapi'

And then execute:

$ bundle

Or install it yourself as:

$ gem install mtgapi

Usage

Set ENV variable

export MTG_TOKEN=token_goes_here

Instantiate a client

@client = Mtgapi::Client.new

Fetch Cards by Name

@client.find_by(:name, "Shock")

Fetch Cards by ID

@client.find_by(:id, 1)

Fetch Cards by Set

@client.find_by(:set, "Alara Reborn")

Fetch list of sets

@client.sets

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request