Project

RuBing

0.0
No commit activity in last 3 years
No release in over 3 years
A Ruby wrapper for Bing search API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 1.1.0
 Project Readme

RuBing

A simple Ruby interface for Microsoft Bing

Usage

require 'rubing'
RuBing::Search::app_id = 'YOURAPPID'
response = RuBing::Search.get('kittens')
=> #<RuBing::Response:0x4e05c ...>
response.results[0].url
=> "http://en.wikipedia.org/wiki/Kitten"

You need a Bing app ID in order to use the interface. You can get one at http://www.bing.com/developers/createapp.aspx

Enjoy!