No commit activity in last 3 years
No release in over 3 years
Parses the MTG Gatherer website for a collection of cards from the provided set.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

>= 0
>= 0
>= 0

Runtime

 Project Readme

GathererSetParser

This is a tool for parsing the official Magic the Gathering card database for a complete collection of cards belonging to a specific set. The cards of the given set will be returned in an array of hashes.

This gem was extracted from a personal project, and hasn't been throughly tested for every set in production. You'll likely want to refactor a lot of the code before using it on a production server.

Installation

Add this line to your application's Gemfile:

gem 'gatherer_set_parser'

And then execute:

$ bundle

Or install it yourself as:

$ gem install gatherer_set_parser

Usage

This set requires you to pass in a case sensitive set name from the Gatherer website. Here's an example:

  # Create the array of cards from the given set name
  cards = GathererSetParser::Fetch.new('Dark Ascension').cards

This will return an array of 171 cards. Here's an example of the output of cards.first:

  { :title=> "Afflicted Deserter",
  :card_type => "Creature",
  :sub_type => "",
  :power => 3,
  :toughness => 2,
  :cmc => 4,
  :mana_cost => ["3", "R"],
  :loyalty => nil,
  :image_url => "http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=262675&type=card",
  :text => "\r\n At the beginning of each upkeep, if no spells were cast last turn, transform Afflicted Deserter.",
  :gatherer_url => "http://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262675",
  :rarity => "Uncommon" }

Contributing

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

Contact

david@mockra.com

@Mockra_

mockra.com