No release in over 3 years
Low commit activity in last 3 years
Runs a trivial background process that just fetches the last tweet and saves it to a Redis backend this can also be a form of a microservice.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Last Tweet Redux

This gem does one simple action: fetches your last tweet (at a specified interval) and saves it (properly formatted) to Redis.

Quick start

Include the gem in your Gemfile and do a bundle install

gem 'last_tweet_redux', require: false

Run the process as a daemon: last-tweet -d -P tmp/last_tweet.pid -l tmp/last_tweet.log -c twitter.yml

Configuration file should look like:

screen_name: 'twitter_name'
redis_url: 'redis://:p4ssw0rd@10.0.1.1:6380/15'
interval: 1
oauth:
  consumer_key: 'your-consumer-key'
  consumer_secret: 'your-consumer-secret-key'
  token : 'your-oauth-token'
  token_secret: 'your-oauth-token-secret'

note: interval is an Integer for the number of minutes the process should hit the Twitter API

You can kill the process with: last-tweet -k -P tmp/last_tweet.pid

In your application add the Redis gem and retrieve your tweet

In your controller:

# rest of your controller
  def get_last_tweet
    client = Redis.new

    @last_tweet = Marshal.load client.get('last_tweet')
  end

Then in your view:

# rest of your view
  <div id="tweet">
    <%= last_tweet.body %>
    <%= last_tweet.created_at %>
    <%= last_tweet.url %>
  </div>

Capistrano commands for starting/killing the daemon

after 'unicorn:restart' do
  run "cd #{current_path}; chruby-exec #{ruby_version} -- bundle exec last-tweet -k -P ../shared/tmp/last_tweet.pid -c config/last_tweet.yml"
  run "cd #{current_path}; chruby-exec #{ruby_version} -- bundle exec last-tweet -d -P ../shared/tmp/last_tweet.pid -l ../shared/tmp/last_tweet.log -c config/last_tweet.yml"
end

note: the example uses chruby feel free to update/remove if the case

Requirements

Last Tweet Redux requires at least Ruby >= 2.0 and the Redis gem in your app.

Detailed configuration parameters for the executable

  -P, --pid FILE            save PID in FILE when using -d option.
                            (default: /var/run/last_tweet_redux.pid)
  -d, --daemon              Daemonize mode
  -l, --log FILE            Logfile for output
                            (default: /var/log/last_tweet_redux.log)
  -k, --kill [PID]         Kill specified running daemons - leave blank to kill all.
  -u, --user USER           User to run as
  -G, --group GROUP         Group to run as
  -c, --config FILE.yml     Config path
  -?, --help                Display this usage information.

Why

This is just extracted functionality from my Rails app. I don't see the point of adding a couple of heavy gems just to retrieve my last tweet.

In my previous implementation this generated unnecessary complexity:

  • get the tweet from the back-end then cache it - requires gems, must be cached for a long time as an API call takes some time
  • get the tweet via JavaScript and then cache it via local storage - makes the front-end slow adds unnecessary JS logic
  • do an asynchronously call to cached back-end endpoint - cache it via local storage and via back-end - but as the tweet loads for the 1st time I have an empty or loading div - you get the "best" of both worlds

Solution:

Run a trivial background process that just fetches the last tweet and saves it to a Redis back-end this can also be a form of a microservice.

License (MIT)

Copyright (c) 2014 Marian Posaceanu

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.