From 1959dd6077d9cac95d678b5378022234ccbf979b Mon Sep 17 00:00:00 2001 From: luca-marie Date: Thu, 25 Aug 2016 21:00:44 +0200 Subject: Code lives now in twitter_helper.rb --- app/controllers/twitter_controller.rb | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 app/controllers/twitter_controller.rb (limited to 'app/controllers') diff --git a/app/controllers/twitter_controller.rb b/app/controllers/twitter_controller.rb deleted file mode 100644 index 0f6a773..0000000 --- a/app/controllers/twitter_controller.rb +++ /dev/null @@ -1,19 +0,0 @@ -class TwitterController < ApplicationController - def twitter_client - Twitter::REST::Client.new do |config| - config.consumer_key = Rails.application.secrets.twitter['consumer_key'] - config.consumer_secret = Rails.application.secrets.twitter['consumer_secret'] - config.bearer_token = Rails.application.secrets.twitter['bearer_token'] - end - end - - def index - unless Rails.application.secrets.twitter['enabled'] == false - twitter_handle = Rails.application.secrets.twitter['twitter_handle'] - @twitter_screen_name = twitter_handle - @twitter_name = twitter_client.user(twitter_handle).name - @tweets = twitter_client.user_timeline(twitter_handle).select{ |tweet| tweet.text.start_with?('RT','@')==false} - @tweet_time = "tweeted on" - end - end -end -- cgit v1.2.3