TwitterAnonymousClient

Gem Version Build Status Dependency Status Code Climate Coverage Status

Description

Twitter public (anonymous) client for old v1.0 API just to retrieve the last N user statuses.

Installation

$ gem install twitter_anonymous_client or add to your Gemfile this line: gem 'twitter_anonymous_client' then run bundle install

Usage

require 'twitter_anonymous_client'

tweets = Twitter::Client.new.user_timeline('elgalu', count: 1)
elgalu = tweets.first #=>  #<Twitter::Tweet:0x00.. @id="3076....>
elgalu.text #=> "Console Ruby debug is easy - Leo Gallucci's blog http://t.co/JUpUdyf5ts"

Contributing

  1. Fork it.
  2. Make your feature addition or bug fix and create your feature branch.
  3. Update the Change Log.
  4. Add specs/tests for it. This is important so I don't break it in a future version unintentionally.
  5. Commit, create a new Pull Request.
  6. Check that your pull request passes the build.

License

Released under the MIT License. See the LICENSE file for further details.

RubyGems | Documentation | Source | Bugtracker | Build Status | Dependency Status | Code Climate