Skip to content

Commit 239aa63

Browse files
authored
Merge branch 'master' into hubot/github-pages-health-check-v1-17-0
2 parents b8a2078 + 1194fef commit 239aa63

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

Dockerfile.alpine

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:alpine
1+
FROM ruby:2.7.1-alpine
22

33
RUN apk update && apk add --no-cache \
44
git

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ shell:
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`
2323
server:
2424
test -d "${SITE}" || \

lib/github-pages/dependencies.rb

+2-2
Original file line numberDiff line numberDiff 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",

lib/github-pages/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module GitHubPages
4-
VERSION = 209
4+
VERSION = 211
55
end

spec/fixtures/jekyll-seo-tag.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Jekyll SEO Tag
3+
locale: et_EE
34
---
45

56
{% seo %}

spec/github-pages/integration_spec.rb

+6-2
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)