File tree 6 files changed +12
-7
lines changed
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
2
2
3
3
RUN apk update && apk add --no-cache \
4
4
git
Original file line number Diff line number Diff line change 18
18
/bin/bash
19
19
20
20
# 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
22
22
# by prepending it to the make rule e.g.: `SITE=../path-to-site make server`
23
23
server :
24
24
test -d " ${SITE} " || \
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Dependencies
17
17
18
18
# Misc
19
19
"liquid" => "4.0.3" ,
20
- "rouge" => "3.23 .0" ,
20
+ "rouge" => "3.26 .0" ,
21
21
"github-pages-health-check" => "1.17.0" ,
22
22
23
23
# Plugins
@@ -27,7 +27,7 @@ class Dependencies
27
27
"jekyll-gist" => "1.5.0" ,
28
28
"jekyll-paginate" => "1.1.0" ,
29
29
"jekyll-coffeescript" => "1.1.1" ,
30
- "jekyll-seo-tag" => "2.6 .1" ,
30
+ "jekyll-seo-tag" => "2.7 .1" ,
31
31
"jekyll-github-metadata" => "2.13.0" ,
32
32
"jekyll-avatar" => "0.7.0" ,
33
33
"jekyll-remote-theme" => "0.4.2" ,
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module GitHubPages
4
- VERSION = 209
4
+ VERSION = 211
5
5
end
Original file line number Diff line number Diff line change 1
1
---
2
2
title: Jekyll SEO Tag
3
+ locale: et_EE
3
4
---
4
5
5
6
{% seo %}
Original file line number Diff line number Diff line change @@ -187,8 +187,12 @@ def rm_destination
187
187
end
188
188
189
189
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\" >" )
192
196
end
193
197
end
194
198
You can’t perform that action at this time.
0 commit comments