DailyDealr

DailyDealr gem is a ruby wrapper for the DailyDeal API. This gem uses HTTParty gem.

This takes over for the GroopBuyr gem because of the renaming of GroopBuy.com to DailyDeal.com.

Install

gem install dailydealr

Usage

There are two operations for the DailyDealr API: cities and deals.

Cities returns a list of cities and their code for all cities where DailyDealr has deals.

Deals returns a list of deals for a specific city code.

Example

require "rubygems"
require "dailydealr"
require "pp"
dd = DailyDealr.new
pp dd.cities
pp dd.deals("HOU")

Copyright © 2010 dave elkins. See LICENSE for details.