Skip to content

Commit e2eec18

Browse files
committed
move version to its own file for easier bumping
1 parent 860b8b9 commit e2eec18

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

jekyll-seo-tag.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# coding: utf-8
22
lib = File.expand_path('../lib', __FILE__)
33
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4+
require 'jekyll-seo-tag/version'
45

56
Gem::Specification.new do |spec|
67
spec.name = "jekyll-seo-tag"
7-
spec.version = "0.1.3"
8+
spec.version = Jekyll::SeoTag::VERSION
89
spec.authors = ["Ben Balter"]
910
spec.email = ["[email protected]"]
1011
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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Prevent bundler errors
2+
module Liquid; class Tag; end; end
3+
4+
module Jekyll
5+
class SeoTag < Liquid::Tag
6+
VERSION = "0.1.3"
7+
end
8+
end

0 commit comments

Comments
 (0)