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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 388ef81d823b79a183bbefd425ac0f0a00fc39e0
4
- data.tar.gz: 0e9410cdf16cbf25b3061f21b0b0e658039e3c53
3
+ metadata.gz: 68dbc714bbb210bb556417df503ec1fd24ee6ec7
4
+ data.tar.gz: 8e81933b57f8294d9fe81aea45c80a96d401df55
5
5
  SHA512:
6
- metadata.gz: 79f35ad015c27add8466eaa0a53f46126ad894e2cebcd4388dea036a737da594e49a71d71445f7c592e3ac66358af2259182aade9893264907356c9ccd52ccc7
7
- data.tar.gz: 34f43475ee7147646905dcd6e7c58f7f997f7cb0cd03732ada456cedc11ce649a99c2c26b114d52463e6114c2608c8a9eded7830a0b9b8414cbc9accec2a300b
6
+ metadata.gz: b2a9b825f520ad1fa5693d3823b9dc2622ab024736da48e3d54a267e2366de646747bbe27c38e2feb08a20ec571e886de533e9f46a1ecf38410f0fc96eb1933f
7
+ data.tar.gz: 470de01dee01348ac88e302a7140b8df2794fad8cae0e36bdccddb337ef39652e19b3af371a61237b427064f5fe6fce6f1c7f5a424b05cb9d59aa32b7fb63c76
data/.travis.yml ADDED
@@ -0,0 +1,13 @@
1
+ language: ruby
2
+ script: "script/cibuild"
3
+ rvm:
4
+ - 2.1
5
+ - 2.0
6
+ env:
7
+ - ""
8
+ - JEKYLL_VERSION=3.0.0
9
+ matrix:
10
+ include:
11
+ - # Ruby 1.9
12
+ rvm: 1.9.3
13
+ env: JEKYLL_VERSION=2.0
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 hypens.
3
+ A plugin to make Jekyll slugify with underscores instead of hyphens.
4
4
 
5
5
  [![Gem Version](https://img.shields.io/gem/v/jekyll-slugify_underscore.svg)](https://rubygems.org/gems/jekyll-slugify_underscore)
6
+ [![Build Status](https://img.shields.io/travis/paulrobertlloyd/jekyll-slugify_underscore/master.svg)](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 hypens."
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")
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module SlugifyUnderscore
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
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.1
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 hypens.
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