jekyll-slugify_underscore 0.0.1 → 0.0.2
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 +4 -4
- data/.travis.yml +13 -0
- data/README.md +2 -1
- data/jekyll-slugify_underscore.gemspec +1 -1
- data/lib/jekyll/slugify_underscore/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68dbc714bbb210bb556417df503ec1fd24ee6ec7
|
4
|
+
data.tar.gz: 8e81933b57f8294d9fe81aea45c80a96d401df55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2a9b825f520ad1fa5693d3823b9dc2622ab024736da48e3d54a267e2366de646747bbe27c38e2feb08a20ec571e886de533e9f46a1ecf38410f0fc96eb1933f
|
7
|
+
data.tar.gz: 470de01dee01348ac88e302a7140b8df2794fad8cae0e36bdccddb337ef39652e19b3af371a61237b427064f5fe6fce6f1c7f5a424b05cb9d59aa32b7fb63c76
|
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
# jekyll-slugify_underscore
|
2
2
|
|
3
|
-
A plugin to make Jekyll slugify with underscores instead of
|
3
|
+
A plugin to make Jekyll slugify with underscores instead of hyphens.
|
4
4
|
|
5
5
|
[](https://rubygems.org/gems/jekyll-slugify_underscore)
|
6
|
+
[](https://travis-ci.org/paulrobertlloyd/jekyll-slugify_underscore)
|
6
7
|
|
7
8
|
## Installation
|
8
9
|
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "jekyll-slugify_underscore"
|
8
8
|
spec.version = Jekyll::SlugifyUnderscore::VERSION
|
9
9
|
spec.summary = "Jekyll slugify with underscores."
|
10
|
-
spec.description = "A plugin to make Jekyll slugify with underscores instead of
|
10
|
+
spec.description = "A plugin to make Jekyll slugify with underscores instead of hyphens."
|
11
11
|
spec.authors = ["Paul Robert Lloyd"]
|
12
12
|
spec.email = "me+rubygems@paulrobertlloyd.com"
|
13
13
|
spec.files = Dir.glob("lib/**/*.rb")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-slugify_underscore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Robert Lloyd
|
@@ -72,13 +72,14 @@ dependencies:
|
|
72
72
|
- - "~>"
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '1.6'
|
75
|
-
description: A plugin to make Jekyll slugify with underscores instead of
|
75
|
+
description: A plugin to make Jekyll slugify with underscores instead of hyphens.
|
76
76
|
email: me+rubygems@paulrobertlloyd.com
|
77
77
|
executables: []
|
78
78
|
extensions: []
|
79
79
|
extra_rdoc_files: []
|
80
80
|
files:
|
81
81
|
- ".gitignore"
|
82
|
+
- ".travis.yml"
|
82
83
|
- Gemfile
|
83
84
|
- LICENSE
|
84
85
|
- README.md
|