diff --git a/jekyll-seo-tag.gemspec b/jekyll-seo-tag.gemspec index ddaa685..bc207b0 100644 --- a/jekyll-seo-tag.gemspec +++ b/jekyll-seo-tag.gemspec @@ -1,10 +1,11 @@ # coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'jekyll-seo-tag/version' Gem::Specification.new do |spec| spec.name = "jekyll-seo-tag" - spec.version = "0.1.3" + spec.version = Jekyll::SeoTag::VERSION spec.authors = ["Ben Balter"] spec.email = ["ben.balter@github.com"] 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.} diff --git a/lib/jekyll-seo-tag/version.rb b/lib/jekyll-seo-tag/version.rb new file mode 100644 index 0000000..358cf64 --- /dev/null +++ b/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