├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── jekyll-twitter-plugin.gemspec ├── lib └── jekyll-twitter-plugin.rb ├── media ├── embedded-grid.png ├── embedded-moment.png ├── embedded-timeline.png └── embedded-tweet.png └── spec ├── api_request_spec.rb ├── integration_tests.rb ├── spec_helper.rb ├── support └── jekyll_template.rb └── twitter_tag_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require "bundler/gem_tasks" 4 | -------------------------------------------------------------------------------- /jekyll-twitter-plugin.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/jekyll-twitter-plugin.gemspec -------------------------------------------------------------------------------- /lib/jekyll-twitter-plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/lib/jekyll-twitter-plugin.rb -------------------------------------------------------------------------------- /media/embedded-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/media/embedded-grid.png -------------------------------------------------------------------------------- /media/embedded-moment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/media/embedded-moment.png -------------------------------------------------------------------------------- /media/embedded-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/media/embedded-timeline.png -------------------------------------------------------------------------------- /media/embedded-tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/media/embedded-tweet.png -------------------------------------------------------------------------------- /spec/api_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/spec/api_request_spec.rb -------------------------------------------------------------------------------- /spec/integration_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/spec/integration_tests.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/jekyll_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/spec/support/jekyll_template.rb -------------------------------------------------------------------------------- /spec/twitter_tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-twitter-plugin/HEAD/spec/twitter_tag_spec.rb --------------------------------------------------------------------------------