jekyll_version_plugin 1.0.0 → 1.0.1

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
  SHA1:
3
- metadata.gz: 642cbe0c541d5dfd9a24abf0cbb2e1b121657cf8
4
- data.tar.gz: f1a8b7da87ffaa058265f98878153f4d04587a6c
3
+ metadata.gz: 2518a73158217de0d7bf436053945f088d3b0942
4
+ data.tar.gz: ce532ba44729b680de838f62645d410a02c6ab5a
5
5
  SHA512:
6
- metadata.gz: 11716db22871188e3659dbf1823969ca6219b91b34b3dbaa639951405b65f017de84de8bf2eab59a1006f4795518b319ccdf7e10419f1440a0fc7f0d6a6851d8
7
- data.tar.gz: 7b9acde9ec2f1e5866cc624cdd6c2f4fca27ad75c97f919b5ed2f63453a602c145268c0829dd172f2d9494119e02e4345ff521de3a82a4ee1345e607f59ff9de
6
+ metadata.gz: d96a557101b0860b1234963e31d7b876f5b1b40b0e264c335932efa8c622c551a150ee6054c4bc49a21c7050ac1a56912a849d1748be533f3ce15cfcfc5a7948
7
+ data.tar.gz: 6b4303466d2c699de6f5502f7b4b22a3df3dd634dec35a34d868673759eee960350a50bf62fe19fc6e2594db01f455507e3b4efcc785f3b89ba8ab68e20963e1
data/README.md CHANGED
@@ -33,10 +33,10 @@ As mentioned by [Jekyll's documentation](http://jekyllrb.com/docs/plugins/#insta
33
33
 
34
34
  #### Require gem
35
35
 
36
- Add the `jekyll-version-plugin` to your site `_config.yml` file for Jekyll to import the plugin as a gem.
36
+ Add the `jekyll_version_plugin` to your site `_config.yml` file for Jekyll to import the plugin as a gem.
37
37
 
38
38
  ```ruby
39
- gems: [jekyll-version-plugin]
39
+ gems: [jekyll_version_plugin]
40
40
  ```
41
41
 
42
42
  #### Manual import
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'jekyll_version_plugin'
7
- spec.version = '1.0.0'
7
+ spec.version = '1.0.1'
8
8
  spec.authors = ['Rob Murray']
9
9
  spec.email = ['robmurray17@gmail.com']
10
10
  spec.summary = %q{A Liquid tag plugin for Jekyll that renders a version identifier for your Jekyll site, sourced from the git repository.}
@@ -0,0 +1,2 @@
1
+ # Want to use a different name for the tag class than the gem name :)
2
+ require 'project_version_tag'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll_version_plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Murray
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-06 00:00:00.000000000 Z
11
+ date: 2014-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -67,6 +67,7 @@ files:
67
67
  - README.md
68
68
  - Rakefile
69
69
  - jekyll_version_plugin.gemspec
70
+ - lib/jekyll_version_plugin.rb
70
71
  - lib/project_version_tag.rb
71
72
  - spec/project_version_tag_spec.rb
72
73
  - spec/spec_helper.rb