File tree Expand file tree Collapse file tree 6 files changed +12
-7
lines changed
Expand file tree Collapse file tree 6 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1- FROM ruby:alpine
1+ FROM ruby:2.7.1- alpine
22
33RUN apk update && apk add --no-cache \
44 git
Original file line number Diff line number Diff line change 1818 /bin/bash
1919
2020# Spawn a server. Specify the path to the SITE directory by
21- # exposing it using `expose SITE="../path-to-jekyll-site"` prior to calling or
21+ # exposing it using `export SITE="../path-to-jekyll-site"` prior to calling or
2222# by prepending it to the make rule e.g.: `SITE=../path-to-site make server`
2323server :
2424 test -d " ${SITE} " || \
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Dependencies
1717
1818 # Misc
1919 "liquid" => "4.0.3" ,
20- "rouge" => "3.23 .0" ,
20+ "rouge" => "3.26 .0" ,
2121 "github-pages-health-check" => "1.17.0" ,
2222
2323 # Plugins
@@ -27,7 +27,7 @@ class Dependencies
2727 "jekyll-gist" => "1.5.0" ,
2828 "jekyll-paginate" => "1.1.0" ,
2929 "jekyll-coffeescript" => "1.1.1" ,
30- "jekyll-seo-tag" => "2.6 .1" ,
30+ "jekyll-seo-tag" => "2.7 .1" ,
3131 "jekyll-github-metadata" => "2.13.0" ,
3232 "jekyll-avatar" => "0.7.0" ,
3333 "jekyll-remote-theme" => "0.4.2" ,
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module GitHubPages
4- VERSION = 209
4+ VERSION = 211
55end
Original file line number Diff line number Diff line change 11---
22title: Jekyll SEO Tag
3+ locale: et_EE
34---
45
56{% seo %}
Original file line number Diff line number Diff line change @@ -187,8 +187,12 @@ def rm_destination
187187 end
188188
189189 context "jekyll-seo-tag" do
190- it "outputs the tag" do
191- expect ( contents ) . to match ( "<title>Jekyll SEO Tag" )
190+ it "outputs title tag" do
191+ expect ( contents ) . to include ( "<title>Jekyll SEO Tag | pages-gem</title>" )
192+ end
193+
194+ it "outputs OpenGraph locale meta tag" do
195+ expect ( contents ) . to include ( "<meta property=\" og:locale\" content=\" et_EE\" >" )
192196 end
193197 end
194198
You can’t perform that action at this time.
0 commit comments