Module: TwitterJekyll

Defined in:
lib/jekyll-twitter-plugin.rb

Overview

A Liquid tag plugin for Jekyll that renders Tweets from Twitter API. github.com/rob-murray/jekyll-twitter-plugin

Defined Under Namespace

Modules: Cacheable Classes: ErrorResponse, FileCache, NullCache, Oembed, TwitterApi, TwitterSecrets, TwitterTag, TwitterTagNoCache

Constant Summary collapse

MissingApiKeyError =
Class.new(StandardError)
CONTEXT_API_KEYS =
%w(consumer_key consumer_secret access_token access_token_secret).freeze
ENV_API_KEYS =
%w(TWITTER_CONSUMER_KEY TWITTER_CONSUMER_SECRET TWITTER_ACCESS_TOKEN TWITTER_ACCESS_TOKEN_SECRET).freeze
TWITTER_STATUS_URL =
%r{\Ahttps?://twitter\.com/(:#!\/)?\w+/status(es)?/\d+}i
REFER_TO_README =
"Please see 'https://github.com/rob-murray/jekyll-twitter-plugin' for usage."