jekyll-planning-wiki-plugins 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3d180159e6a7ce4495406a271fa56183b63844555764f4bdde9a01b8abf100a6
4
- data.tar.gz: 027a0d3c4020360c763b95a39a5d13dd188ec8f5e3cc58566c58a8c0cac792a5
3
+ metadata.gz: df5c70ff5f85a620dbccf4b6ffd0f42effb4f2ac66ab369a37db3f19f6cef70e
4
+ data.tar.gz: 48f11579ed0878b6cd2d7ebb47b7dec2708d95ff8aff582eaf455f2cf7a18d72
5
5
  SHA512:
6
- metadata.gz: 42fdcd2d0ca61d8b2ff7861ae0ea9afd0c44ca2f5ef390885c55751f75dab2d10c5c589410573d86c6a40b5da34ecc4562af09181f3ca27962a9bd33d408e00a
7
- data.tar.gz: ef416a9041336b324921d334c34b332c0c4816b18903b4ab74fe125df74ec13abfe5a97e6cb356dac9f3e7433525aae2a4b61b270d95d422115b9c96712cff77
6
+ metadata.gz: 8eb88262407b8c74753f219c59e64ed3de82aef65c906f766930adef19218b1f2a51428d1d2db06c5bef7b3f823b3ded4a874e96caabce9c9c458500283cd711
7
+ data.tar.gz: da53454778828551774fc9899802b4df33ffdb37af917b719de6f6cb0d7eb3f8899bfbfb0d0305f66dc20061c186dc0db40f210efb8921855d21fa554a298927
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ *.gem
@@ -1,3 +1,5 @@
1
+ require "jekyll/plannertags/version"
2
+
1
3
  module Jekyll
2
4
  class GitAuthorTag < Liquid::Tag
3
5
  def initialize(tag_name, text, tokens)
@@ -2,7 +2,7 @@ module Jekyll
2
2
  module Planning
3
3
  module Wiki
4
4
  module Plugins
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-planning-wiki-plugins
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Green
@@ -69,7 +69,6 @@ files:
69
69
  - bin/setup
70
70
  - jekyll-planning-wiki-plugins.gemspec
71
71
  - lib/jekyll/jekyll-planning-wiki-plugins.rb
72
- - lib/jekyll/planning/wiki/plugins.rb
73
72
  - lib/jekyll/planning/wiki/plugins/version.rb
74
73
  homepage: https://www.planning.wiki
75
74
  licenses:
@@ -1,12 +0,0 @@
1
- require "jekyll/planning/wiki/plugins/version"
2
-
3
- module Jekyll
4
- module Planning
5
- module Wiki
6
- module Plugins
7
- class Error < StandardError; end
8
- # Your code goes here...
9
- end
10
- end
11
- end
12
- end