jekyll-seo-tag 2.1.0 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 07d7b830b127017c667a9e58bd5c214e594558bc
4
- data.tar.gz: a69f4f9cee9f45644add22a57245366cdbc1ddc1
3
+ metadata.gz: 3aadbfac78b25f51bdf3988226662b0bec27d938
4
+ data.tar.gz: 31daa9c7be9db36224a7f7e4ea73bd65759e434c
5
5
  SHA512:
6
- metadata.gz: 52c022b593902ef22131b0e96ef497d188e73469a07a6c2ffa33c0619de08393eeeaae729556a8d368a1d45b0d9ce7907f64e1eb40a177abcbce1213989e82b6
7
- data.tar.gz: 0a7309abed4b88e3c9b95a8f349cfae6ad0305b304a4901d3fcf7e1c4d637a16d6381a3b2fd6fe64eba7f9d2817d8d410a23a3700b7fb36fb20f0cb655be3677
6
+ metadata.gz: 86935801e5cfa7a9615a3d43724883963cd4797cd77cd23c0acf269d673d812b54c046377b0c9cbefb60aba7de645d6a8e261014db70e1bfebe7d9a9e17b49b3
7
+ data.tar.gz: 22c5d2544893c1568669e1655ee242ee56207ce20c04f898b951089220357dbab5451a2a1bf29e6cfcf1dfef624e17faf78d77a7507cf7b20de05a5e6a1f901a
data/.gitignore CHANGED
@@ -7,4 +7,5 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+ /bin/
10
11
  *.gem
@@ -6,12 +6,20 @@ Metrics/LineLength:
6
6
  - spec/**/*
7
7
  - jekyll-seo-tag.gemspec
8
8
 
9
+ Metrics/BlockLength:
10
+ Exclude:
11
+ - spec/**/*
12
+
9
13
  Style/Documentation:
10
14
  Enabled: false
11
15
 
12
16
  Style/FileName:
13
17
  Enabled: false
14
18
 
19
+ Style/IndentHeredoc:
20
+ Exclude:
21
+ - spec/**/*
22
+
15
23
  AllCops:
16
24
  Exclude:
17
25
  - vendor/**/*
data/Gemfile CHANGED
@@ -1,15 +1,14 @@
1
- source 'https://rubygems.org'
2
- require 'json'
3
- require 'open-uri'
1
+ source "https://rubygems.org"
2
+ require "json"
3
+ require "open-uri"
4
4
 
5
5
  gemspec
6
6
 
7
7
  group :development, :test do
8
- versions = JSON.parse(open('https://pages.github.com/versions.json').read)
9
- versions.delete('ruby')
10
- versions.delete('jekyll-seo-tag')
11
- versions.delete('github-pages')
12
- versions.delete('jekyll') # Remove this line when GitHub Pages supports 3.3.0
8
+ versions = JSON.parse(open("https://pages.github.com/versions.json").read)
9
+ versions.delete("ruby")
10
+ versions.delete("jekyll-seo-tag")
11
+ versions.delete("github-pages")
13
12
 
14
13
  versions.each do |dep, version|
15
14
  gem dep, version
@@ -1,5 +1,26 @@
1
1
  ## HEAD
2
2
 
3
+ ### Major Enhancements
4
+
5
+ * Add author meta (#103)
6
+ * Add og:locale support #166
7
+ * Add support for Bing and Yandex webmaster tools. Closes #147 (#148)
8
+ * Add SEO author and date modified to validate JSON-LD output (#151)
9
+
10
+ ### Minor Enhancements
11
+
12
+ * Use `|` for title separator (#162)
13
+ * Use `og:image` for twitter image (#174)
14
+
15
+ ### Development Fixes
16
+
17
+ * Style fixes (#170, #157, #149)
18
+ * Test against latest version of Jekyll (#171)
19
+ * Bump dev dependencies (#172)
20
+ * Remove Rake dependency (#180)
21
+
22
+ ## 2.1.0
23
+
3
24
  ### Major Enhancement
4
25
 
5
26
  * Use new URL filters (#123)
data/README.md CHANGED
@@ -8,13 +8,13 @@ A Jekyll plugin to add metadata tags for search engines and social networks to b
8
8
 
9
9
  Jekyll SEO Tag adds the following meta tags to your site:
10
10
 
11
- * Pages title (with site title appended when available)
11
+ * Page title, with site title or description appended
12
12
  * Page description
13
13
  * Canonical URL
14
14
  * Next and previous URLs on paginated pages
15
15
  * [JSON-LD Site and post metadata](https://developers.google.com/structured-data/) for richer indexing
16
- * [Open graph](http://ogp.me/) title, description, site title, and URL (for Facebook, LinkedIn, etc.)
17
- * [Twitter summary card](https://dev.twitter.com/cards/overview) metadata
16
+ * [Open Graph](http://ogp.me/) title, description, site title, and URL (for Facebook, LinkedIn, etc.)
17
+ * [Twitter Summary Card](https://dev.twitter.com/cards/overview) metadata
18
18
 
19
19
  While you could theoretically add the necessary metadata tags yourself, Jekyll SEO Tag provides a battle-tested template of crowdsourced best-practices.
20
20
 
@@ -78,6 +78,7 @@ The SEO tag will respect any of the following if included in your site's `_confi
78
78
  * `social` - For [specifying social profiles](https://developers.google.com/structured-data/customize/social-profiles). The following properties are available:
79
79
  * `name` - If the user or organization name differs from the site's name
80
80
  * `links` - An array of links to social media profiles.
81
+ * `date_modified` - Manually specify the `dateModified` field in the JSON-LD output to override Jekyll's own `dateModified`. This field will take **first priority** for the `dateModified` JSON-LD output. This is useful when the file timestamp does not match the true time that the content was modified. A user may also install [Last Modified At](https://github.com/gjtorikian/jekyll-last-modified-at) which will offer an alternative way of providing for the `dateModified` field.
81
82
 
82
83
  ```yml
83
84
  social:
@@ -92,6 +93,17 @@ The SEO tag will respect any of the following if included in your site's `_confi
92
93
  ```
93
94
 
94
95
  * `google_site_verification` for verifying ownership via Google webmaster tools
96
+ * Alternatively, verify ownership with several services at once using the following format:
97
+
98
+ ```yml
99
+ webmaster_verifications:
100
+ google: 1234
101
+ bing: 1234
102
+ alexa: 1234
103
+ yandex: 1234
104
+ ```
105
+
106
+ * `lang` - The locale these tags are marked up in. Of the format `language_TERRITORY`. Default is `en_US`.
95
107
 
96
108
  The SEO tag will respect the following YAML front matter if included in a post, page, or document:
97
109
 
@@ -99,6 +111,7 @@ The SEO tag will respect the following YAML front matter if included in a post,
99
111
  * `description` - A short description of the page's content
100
112
  * `image` - URL to an image associated with the post, page, or document (e.g., `/assets/page-pic.jpg`)
101
113
  * `author` - Page-, post-, or document-specific author information (see below)
114
+ * `lang` - Page-, post-, or document-specific language information
102
115
 
103
116
  ## Advanced usage
104
117
 
@@ -182,17 +195,14 @@ The following options can be set for any particular page. While the default opti
182
195
  For most users, setting `image: [path-to-image]` on a per-page basis should be enough. If you need more control over how images are represented, the `image` property can also be an object, with the following options:
183
196
 
184
197
  * `path` - The relative path to the image. Same as `image: [path-to-image]`
185
- * `twitter` - The relative path to a Twitter-specific image.
186
- * `facebook` - The relative path to a Facebook-specific image.
187
- * `height` - The height of the Facebook (`og:image`) image
188
- * `width` - The width of the Facebook (`og:image`) image
198
+ * `height` - The height of the Open Graph (`og:image`) image
199
+ * `width` - The width of the Open Graph (`og:image`) image
189
200
 
190
201
  You can use any of the above, optional properties, like so:
191
202
 
192
203
  ```yml
193
204
  image:
194
- twitter: /img/twitter.png
195
- facebook: /img/facebook.png
205
+ path: /img/twitter.png
196
206
  height: 100
197
207
  width: 100
198
208
  ```
@@ -1,34 +1,34 @@
1
1
  # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
2
+
3
+ lib = File.expand_path("../lib", __FILE__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'jekyll-seo-tag/version'
5
+ require "jekyll-seo-tag/version"
5
6
 
6
7
  Gem::Specification.new do |spec|
7
- spec.name = 'jekyll-seo-tag'
8
+ spec.name = "jekyll-seo-tag"
8
9
  spec.version = Jekyll::SeoTag::VERSION
9
- spec.authors = ['Ben Balter']
10
- spec.email = ['ben.balter@github.com']
10
+ spec.authors = ["Ben Balter"]
11
+ spec.email = ["ben.balter@github.com"]
11
12
  spec.summary = "A Jekyll plugin to add metadata tags for search engines and social networks to better index and display your site's content."
12
- spec.homepage = 'https://github.com/benbalter/jekyll-seo-tag'
13
- spec.license = 'MIT'
13
+ spec.homepage = "https://github.com/benbalter/jekyll-seo-tag"
14
+ spec.license = "MIT"
14
15
 
15
16
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
16
17
  # delete this section to allow pushing this gem to any host.
17
18
  if spec.respond_to?(:metadata)
18
- spec.metadata['allowed_push_host'] = 'https://rubygems.org'
19
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
19
20
  else
20
- raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
21
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
21
22
  end
22
23
 
23
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
24
- spec.bindir = 'exe'
25
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
- spec.require_paths = ['lib']
24
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|spec|features)/!) }
25
+ spec.bindir = "exe"
26
+ spec.executables = spec.files.grep(%r!^exe/!) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
27
28
 
28
- spec.add_dependency 'jekyll', '~> 3.3'
29
- spec.add_development_dependency 'bundler', '~> 1.10'
30
- spec.add_development_dependency 'rake', '~> 10.0'
31
- spec.add_development_dependency 'rspec', '~> 3.3'
32
- spec.add_development_dependency 'html-proofer', '~> 2.5'
33
- spec.add_development_dependency 'rubocop', '~> 0.37'
29
+ spec.add_dependency "jekyll", "~> 3.3"
30
+ spec.add_development_dependency "bundler", "~> 1.14"
31
+ spec.add_development_dependency "rspec", "~> 3.5"
32
+ spec.add_development_dependency "html-proofer", "~> 3.6"
33
+ spec.add_development_dependency "rubocop", "~> 0.48"
34
34
  end
@@ -30,7 +30,7 @@ module Jekyll
30
30
  def options
31
31
  {
32
32
  "version" => Jekyll::SeoTag::VERSION,
33
- "title" => title?
33
+ "title" => title?,
34
34
  }
35
35
  end
36
36
 
@@ -39,18 +39,18 @@ module Jekyll
39
39
  "page" => context.registers[:page],
40
40
  "site" => context.registers[:site].site_payload["site"],
41
41
  "paginator" => context["paginator"],
42
- "seo_tag" => options
42
+ "seo_tag" => options,
43
43
  }
44
44
  end
45
45
 
46
46
  def title?
47
- !(@text =~ %r!title=false!i)
47
+ @text !~ %r!title=false!i
48
48
  end
49
49
 
50
50
  def info
51
51
  {
52
52
  :registers => context.registers,
53
- :filters => [Jekyll::Filters]
53
+ :filters => [Jekyll::Filters],
54
54
  }
55
55
  end
56
56
 
@@ -3,6 +3,6 @@ module Liquid; class Tag; end; end
3
3
 
4
4
  module Jekyll
5
5
  class SeoTag < Liquid::Tag
6
- VERSION = "2.1.0".freeze
6
+ VERSION = "2.2.0".freeze
7
7
  end
8
8
  end
@@ -5,21 +5,13 @@
5
5
  {% endif %}
6
6
 
7
7
  {% assign seo_site_title = site.title | default: site.name %}
8
+ {% assign seo_page_title = page.title | default: seo_site_title %}
9
+ {% assign seo_title = page.title | default: seo_site_title %}
8
10
 
9
- {% if page.title %}
10
- {% assign seo_title = page.title %}
11
- {% assign seo_page_title = page.title %}
12
-
13
- {% if seo_site_title %}
14
- {% assign seo_title = seo_title | append:" - " | append: seo_site_title %}
15
- {% endif %}
16
- {% elsif seo_site_title %}
17
- {% assign seo_title = seo_site_title %}
18
- {% assign seo_page_title = seo_site_title %}
19
-
20
- {% if site.description %}
21
- {% assign seo_title = seo_title | append:" - " | append: site.description %}
22
- {% endif %}
11
+ {% if page.title and seo_site_title %}
12
+ {% assign seo_title = page.title | append:" | " | append: seo_site_title %}
13
+ {% elsif site.description and seo_site_title %}
14
+ {% assign seo_title = seo_site_title | append:" | " | append: site.description %}
23
15
  {% endif %}
24
16
 
25
17
  {% if page.seo and page.seo.name %}
@@ -52,6 +44,15 @@
52
44
 
53
45
  {% assign seo_author = page.author | default: page.authors[0] | default: site.author %}
54
46
  {% if seo_author %}
47
+ {% if seo_author.name %}
48
+ {% assign seo_author_name = seo_author.name %}
49
+ {% else %}
50
+ {% if site.data.authors and site.data.authors[seo_author] %}
51
+ {% assign seo_author_name = site.data.authors[seo_author].name %}
52
+ {% else %}
53
+ {% assign seo_author_name = seo_author %}
54
+ {% endif %}
55
+ {% endif %}
55
56
  {% if seo_author.twitter %}
56
57
  {% assign seo_author_twitter = seo_author.twitter %}
57
58
  {% else %}
@@ -64,6 +65,10 @@
64
65
  {% assign seo_author_twitter = seo_author_twitter | replace:"@","" %}
65
66
  {% endif %}
66
67
 
68
+ {% if page.date_modified or page.last_modified_at or page.date %}
69
+ {% assign seo_date_modified = page.seo.date_modified | default: page.last_modified_at %}
70
+ {% endif %}
71
+
67
72
  {% if page.seo and page.seo.type %}
68
73
  {% assign seo_type = page.seo.type %}
69
74
  {% elsif seo_homepage_or_about %}
@@ -89,13 +94,15 @@
89
94
  {% endif %}
90
95
 
91
96
  {% if page.image %}
92
- {% assign seo_page_image = page.image.path | default: page.image.facebook | default: page.image %}
97
+ {% assign seo_page_image = page.image.path | default: page.image.facebook | default: page.image.twitter | default: page.image %}
93
98
  {% unless seo_page_image contains "://" %}
94
99
  {% assign seo_page_image = seo_page_image | absolute_url %}
95
100
  {% endunless %}
96
101
  {% assign seo_page_image = seo_page_image | escape %}
97
102
  {% endif %}
98
103
 
104
+ {% assign seo_page_lang = page.lang | default: site.lang | default: "en_US" %}
105
+
99
106
  {% if seo_tag.title and seo_title %}
100
107
  <title>{{ seo_title }}</title>
101
108
  {% endif %}
@@ -104,6 +111,12 @@
104
111
  <meta property="og:title" content="{{ seo_page_title }}" />
105
112
  {% endif %}
106
113
 
114
+ {% if seo_author_name %}
115
+ <meta name="author" content="{{ seo_author_name }}" />
116
+ {% endif %}
117
+
118
+ <meta property="og:locale" content="{{ seo_page_lang | replace:'-','_' }}" />
119
+
107
120
  {% if seo_description %}
108
121
  <meta name="description" content="{{ seo_description }}" />
109
122
  <meta property="og:description" content="{{ seo_description }}" />
@@ -119,7 +132,7 @@
119
132
  {% endif %}
120
133
 
121
134
  {% if seo_page_image %}
122
- <meta property="og:image" content="{{ seo_page_image }}" />
135
+ <meta property="og:image" content="{{ seo_page_image }}" />
123
136
  {% if page.image.height %}
124
137
  <meta property="og:image:height" content="{{ page.image.height }}" />
125
138
  {% endif %}
@@ -128,10 +141,6 @@
128
141
  {% endif %}
129
142
  {% endif %}
130
143
 
131
- {% if page.image.twitter %}
132
- <meta name="twitter:image" content="{{ page.image.twitter | absolute_url }}" />
133
- {% endif %}
134
-
135
144
  {% if page.date %}
136
145
  <meta property="og:type" content="article" />
137
146
  <meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}" />
@@ -172,10 +181,24 @@
172
181
  {% endif %}
173
182
  {% endif %}
174
183
 
175
- {% if site.google_site_verification %}
184
+ {% if site.webmaster_verifications %}
185
+ {% if site.webmaster_verifications.google %}
186
+ <meta name="google-site-verification" content="{{ site.webmaster_verifications.google }}">
187
+ {% endif %}
188
+ {% if site.webmaster_verifications.bing %}
189
+ <meta name="msvalidate.01" content="{{ site.webmaster_verifications.bing }}">
190
+ {% endif %}
191
+ {% if site.webmaster_verifications.alexa %}
192
+ <meta name="alexaVerifyID" content="{{ site.webmaster_verifications.alexa }}">
193
+ {% endif %}
194
+ {% if site.webmaster_verifications.yandex %}
195
+ <meta name="yandex-verification" content="{{ site.webmaster_verifications.yandex }}">
196
+ {% endif %}
197
+ {% elsif site.google_site_verification %}
176
198
  <meta name="google-site-verification" content="{{ site.google_site_verification }}" />
177
199
  {% endif %}
178
200
 
201
+
179
202
  <script type="application/ld+json">
180
203
  {
181
204
  "@context": "http://schema.org",
@@ -192,6 +215,13 @@
192
215
  "headline": {{ seo_page_title | jsonify }},
193
216
  {% endif %}
194
217
 
218
+ {% if seo_author %}
219
+ "author": {
220
+ "@type": "Person",
221
+ "name": {{ seo_author | jsonify }}
222
+ },
223
+ {% endif %}
224
+
195
225
  {% if seo_page_image %}
196
226
  "image": {{ seo_page_image | jsonify }},
197
227
  {% endif %}
@@ -200,6 +230,10 @@
200
230
  "datePublished": {{ page.date | date_to_xmlschema | jsonify }},
201
231
  {% endif %}
202
232
 
233
+ {% if seo_date_modified %}
234
+ "dateModified": {{ seo_date_modified | date_to_xmlschema | jsonify }},
235
+ {% endif %}
236
+
203
237
  {% if seo_description %}
204
238
  "description": {{ seo_description | jsonify }},
205
239
  {% endif %}
@@ -207,6 +241,9 @@
207
241
  {% if seo_site_logo %}
208
242
  "publisher": {
209
243
  "@type": "Organization",
244
+ {% if seo_author %}
245
+ "name": {{ seo_author | jsonify }},
246
+ {% endif %}
210
247
  "logo": {
211
248
  "@type": "ImageObject",
212
249
  "url": {{ seo_site_logo | jsonify }}
@@ -214,6 +251,13 @@
214
251
  },
215
252
  {% endif %}
216
253
 
254
+ {% if seo_type == "BlogPosting" or seo_type == "CreativeWork"%}
255
+ "mainEntityOfPage": {
256
+ "@type": "WebPage",
257
+ "@id": {{ page.url | replace:'/index.html','/' | absolute_url | jsonify }}
258
+ },
259
+ {% endif %}
260
+
217
261
  {% if seo_links %}
218
262
  "sameAs": {{ seo_links | jsonify }},
219
263
  {% endif %}
@@ -2,6 +2,6 @@
2
2
 
3
3
  set -ex
4
4
 
5
- bundle exec rake spec
5
+ bundle exec rspec
6
6
  bundle exec rubocop -S -D
7
7
  bundle exec gem build jekyll-seo-tag.gemspec
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-seo-tag
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Balter
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-11-02 00:00:00.000000000 Z
11
+ date: 2017-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -30,70 +30,56 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.10'
33
+ version: '1.14'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.10'
41
- - !ruby/object:Gem::Dependency
42
- name: rake
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '10.0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '10.0'
40
+ version: '1.14'
55
41
  - !ruby/object:Gem::Dependency
56
42
  name: rspec
57
43
  requirement: !ruby/object:Gem::Requirement
58
44
  requirements:
59
45
  - - "~>"
60
46
  - !ruby/object:Gem::Version
61
- version: '3.3'
47
+ version: '3.5'
62
48
  type: :development
63
49
  prerelease: false
64
50
  version_requirements: !ruby/object:Gem::Requirement
65
51
  requirements:
66
52
  - - "~>"
67
53
  - !ruby/object:Gem::Version
68
- version: '3.3'
54
+ version: '3.5'
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: html-proofer
71
57
  requirement: !ruby/object:Gem::Requirement
72
58
  requirements:
73
59
  - - "~>"
74
60
  - !ruby/object:Gem::Version
75
- version: '2.5'
61
+ version: '3.6'
76
62
  type: :development
77
63
  prerelease: false
78
64
  version_requirements: !ruby/object:Gem::Requirement
79
65
  requirements:
80
66
  - - "~>"
81
67
  - !ruby/object:Gem::Version
82
- version: '2.5'
68
+ version: '3.6'
83
69
  - !ruby/object:Gem::Dependency
84
70
  name: rubocop
85
71
  requirement: !ruby/object:Gem::Requirement
86
72
  requirements:
87
73
  - - "~>"
88
74
  - !ruby/object:Gem::Version
89
- version: '0.37'
75
+ version: '0.48'
90
76
  type: :development
91
77
  prerelease: false
92
78
  version_requirements: !ruby/object:Gem::Requirement
93
79
  requirements:
94
80
  - - "~>"
95
81
  - !ruby/object:Gem::Version
96
- version: '0.37'
82
+ version: '0.48'
97
83
  description:
98
84
  email:
99
85
  - ben.balter@github.com
@@ -109,7 +95,6 @@ files:
109
95
  - History.markdown
110
96
  - LICENSE.txt
111
97
  - README.md
112
- - Rakefile
113
98
  - jekyll-seo-tag.gemspec
114
99
  - lib/jekyll-seo-tag.rb
115
100
  - lib/jekyll-seo-tag/version.rb
@@ -138,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
138
123
  version: '0'
139
124
  requirements: []
140
125
  rubyforge_project:
141
- rubygems_version: 2.6.8
126
+ rubygems_version: 2.5.1
142
127
  signing_key:
143
128
  specification_version: 4
144
129
  summary: A Jekyll plugin to add metadata tags for search engines and social networks
data/Rakefile DELETED
@@ -1,6 +0,0 @@
1
- require 'bundler/gem_tasks'
2
- require 'rspec/core/rake_task'
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- task default: :spec