README.md in mtg_sdk-1.1.0 vs README.md in mtg_sdk-1.1.1

- old
+ new

@@ -1,9 +1,11 @@ # Magic: The Gathering SDK -This is the Magic: The Gathering SDK Ruby implementation. It is a wrapper around the MTG API of magicthegathering.io. +[![Gem Version](https://badge.fury.io/rb/mtg_sdk.svg)](https://badge.fury.io/rb/mtg_sdk) [![Build Status](https://travis-ci.org/MagicTheGathering/mtg-sdk-ruby.svg?branch=master)](https://travis-ci.org/MagicTheGathering/mtg-sdk-ruby) +This is the Magic: The Gathering SDK Ruby implementation. It is a wrapper around the MTG API of [magicthegathering.io](http://magicthegathering.io/). + ## Installation Add this line to your application's Gemfile: gem 'mtg_sdk' @@ -122,11 +124,11 @@ card = MTG::Card.find(386616) #### Filter Cards via query parameters - cards = MTG::Card.where(set: ktk).where(subtypes: 'warrior,human').all + cards = MTG::Card.where(set: 'ktk').where(subtypes: 'warrior,human').all #### Find all cards (will take awhile) cards = MTG::Card.all @@ -138,11 +140,11 @@ set = MTG::Set.find('ktk') #### Filter sets via query parameters - sets = MTG::Set.where(name: khans).all + sets = MTG::Set.where(name: 'khans').all #### Get all Sets sets = MTG::Set.all @@ -158,10 +160,10 @@ supertypes = MTG::Supertype.all ## Contributing -1. Fork it ( https://github.com/[my-github-username]/mtg_sdk/fork ) +1. Fork it ( https://github.com/[my-github-username]/mtg-sdk-ruby/fork ) 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 a new Pull Request