├── .github └── workflows │ ├── lint.yml │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console ├── rubocop └── setup ├── examples ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── jekyll-og-image.gemspec ├── lib ├── jekyll-og-image.rb ├── jekyll_og_image.rb └── jekyll_og_image │ ├── configuration.rb │ ├── element │ ├── base.rb │ ├── border.rb │ ├── canvas.rb │ ├── image.rb │ └── text.rb │ ├── generator.rb │ └── version.rb └── test ├── jekyll_og_image └── configuration_test.rb ├── jekyll_og_image_test.rb ├── source ├── _my_collection │ └── item1.md ├── _posts │ ├── 2018-01-12-a-week-with-the-apple-watch.md │ ├── 2018-02-07-advanced-markdown-tips.md │ └── 2018-02-10-what-is-jekyll.md └── about.md └── test_helper.rb /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/bin/console -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/bin/setup -------------------------------------------------------------------------------- /examples/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/examples/1.png -------------------------------------------------------------------------------- /examples/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/examples/2.png -------------------------------------------------------------------------------- /examples/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/examples/3.png -------------------------------------------------------------------------------- /examples/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/examples/4.png -------------------------------------------------------------------------------- /jekyll-og-image.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/jekyll-og-image.gemspec -------------------------------------------------------------------------------- /lib/jekyll-og-image.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require "jekyll_og_image" 4 | -------------------------------------------------------------------------------- /lib/jekyll_og_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/lib/jekyll_og_image.rb -------------------------------------------------------------------------------- /lib/jekyll_og_image/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/lib/jekyll_og_image/configuration.rb -------------------------------------------------------------------------------- /lib/jekyll_og_image/element/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/lib/jekyll_og_image/element/base.rb -------------------------------------------------------------------------------- /lib/jekyll_og_image/element/border.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/lib/jekyll_og_image/element/border.rb -------------------------------------------------------------------------------- /lib/jekyll_og_image/element/canvas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/lib/jekyll_og_image/element/canvas.rb -------------------------------------------------------------------------------- /lib/jekyll_og_image/element/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/lib/jekyll_og_image/element/image.rb -------------------------------------------------------------------------------- /lib/jekyll_og_image/element/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/lib/jekyll_og_image/element/text.rb -------------------------------------------------------------------------------- /lib/jekyll_og_image/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/lib/jekyll_og_image/generator.rb -------------------------------------------------------------------------------- /lib/jekyll_og_image/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module JekyllOgImage 4 | VERSION = "2.0.0" 5 | end 6 | -------------------------------------------------------------------------------- /test/jekyll_og_image/configuration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/test/jekyll_og_image/configuration_test.rb -------------------------------------------------------------------------------- /test/jekyll_og_image_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/test/jekyll_og_image_test.rb -------------------------------------------------------------------------------- /test/source/_my_collection/item1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/test/source/_my_collection/item1.md -------------------------------------------------------------------------------- /test/source/_posts/2018-01-12-a-week-with-the-apple-watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/test/source/_posts/2018-01-12-a-week-with-the-apple-watch.md -------------------------------------------------------------------------------- /test/source/_posts/2018-02-07-advanced-markdown-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/test/source/_posts/2018-02-07-advanced-markdown-tips.md -------------------------------------------------------------------------------- /test/source/_posts/2018-02-10-what-is-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/test/source/_posts/2018-02-10-what-is-jekyll.md -------------------------------------------------------------------------------- /test/source/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/test/source/about.md -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igor-alexandrov/jekyll-og-image/HEAD/test/test_helper.rb --------------------------------------------------------------------------------