An open API service indexing awesome lists of open source software.

https://github.com/mdp/twitter_getter

A simple ruby gem for accessing the Twitter API
https://github.com/mdp/twitter_getter

Last synced: 6 months ago
JSON representation

A simple ruby gem for accessing the Twitter API

Awesome Lists containing this project

README

          

# TwitterGetter - A simple Twitter API gem

## Installation

sudo gem install markpercival-twitter_getter --sources http://gems.github.com

## Usage

@tg = TwitterGetter::Base.new('ev', 'password')
tweets = @tg.search('failwhale')
tweets.each do |t|
p "#{t.from_user}: #{t.text}"
end

@tg.follow('aplusk')

## License

This code is free to use under the terms of the MIT license.

## Contact

Mark Percival