Sha256: e2d216513d493254b8b2f067b714a35afdef228845aca4677097f36bf654446f

Contents?: true

Size: 702 Bytes

Versions: 1

Compression:

Stored size: 702 Bytes

Contents

# Twumper

Twumper is a simple gem to interface with the Twitter API.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'twumper'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install twumper

## Usage

```ruby
twumper = Twumper.new

#set consumer key and secret values 
twumper.config do |tw|
  tw.consumer_key = YOUR_CONSUMER_KEY
  tw.consumer_secret = YOUR_CONSUMER_SECERET
end

# retrieve and set your bearer token
twumper.get_bearer

# search for a keyword and retrieve related tweets
twumper.search('christmas')
```

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
twumper-0.1.1 README.md