move version to its own file for easier bumping
This commit is contained in:
parent
860b8b9a2c
commit
e2eec18895
|
@ -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.}
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue