We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 860b8b9 commit e2eec18Copy full SHA for e2eec18
jekyll-seo-tag.gemspec
@@ -1,10 +1,11 @@
1
# coding: utf-8
2
lib = File.expand_path('../lib', __FILE__)
3
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+require 'jekyll-seo-tag/version'
5
6
Gem::Specification.new do |spec|
7
spec.name = "jekyll-seo-tag"
- spec.version = "0.1.3"
8
+ spec.version = Jekyll::SeoTag::VERSION
9
spec.authors = ["Ben Balter"]
10
spec.email = ["[email protected]"]
11
spec.summary = %q{A Jekyll plugin to add metadata tags for search engines and social networks to better index and display your site's content.}
lib/jekyll-seo-tag/version.rb
@@ -0,0 +1,8 @@
+# Prevent bundler errors
+module Liquid; class Tag; end; end
+
+module Jekyll
+ class SeoTag < Liquid::Tag
+ VERSION = "0.1.3"
+ end
+end
0 commit comments