move version to its own file for easier bumping

This commit is contained in:
Ben Balter 2016-01-07 18:19:53 -05:00
parent 860b8b9a2c
commit e2eec18895
2 changed files with 10 additions and 1 deletions

View File

@ -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.}

View File

@ -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