Skip to content

Commit dadc994

Browse files
authored
Merge branch 'master' into hubot/rouge-v3-26-0
2 parents ed55ce4 + 2508d6b commit dadc994

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

lib/github-pages/dependencies.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -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 = 210
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)