Simple gem for playing with the community Magic the Gathering API
Add this line to your application's Gemfile:
gem 'mtgapi'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mtgapi
export MTG_TOKEN=token_goes_here
@client = Mtgapi::Client.new
@client.find_by(:name, "Shock")
@client.find_by(:id, 1)
@client.find_by(:set, "Alara Reborn")
@client.sets
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request