jekyll-tagging 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: 7948d773271e69433d07f936456e8b12ff09d96f
4
- data.tar.gz: 4c80ae7b5bfc2647b41f025b0d1567e45bef99e8
3
+ metadata.gz: 807e38757a8bc874bbc9ae2f2e8f76258bb8c79a
4
+ data.tar.gz: 71c5bdaeb0df018deaf56650f9abc69ffbb2da0c
5
5
  SHA512:
6
- metadata.gz: ce153677ff32d72527de8c80284d2930197952abb1e13b01e31b86017732418c8b2e460b6cb6e82a5e1f2ee9b6945362dda9604786c58272ee01146eaa02fc91
7
- data.tar.gz: 1ca5728dd26133a4c694e810a8574aadac1ee259f74b50b91750560f5a924fed6db10e55ec0cf8c825b70c7e8d4edd1a0044a2d249923e429208b658ba3e837c
6
+ metadata.gz: f8a2c0b9b8a9812363afb93a68b1c6f2a84fb79905afc0454e3f37eb62b7bdd0673cc979fe9442728578b4b4d6432f074f8da15f7614713765b73ee768c73a93
7
+ data.tar.gz: c8b72102c15c535295388164573b2c2d00c64af902771a2afda461b159d0950b0c1780aa0a604295242726b0b00ed8b93dc097d17e8e11ddd7efa90cac3a0760
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.0.1 [2015-06-11]
2
+
3
+ * Substitution of non ASCII characters and whitespaces, also when 'tag_permalink_style: pretty'.
4
+
1
5
  == 1.0.0 [2015-06-10]
2
6
 
3
7
  * Generate prettier urls for tag with whitespaces or non ASCII characters. ATTENTION: Your urls may change!
@@ -52,11 +52,12 @@ module Jekyll
52
52
 
53
53
  name = yield data if block_given?
54
54
  name ||= tag
55
+ name = jekyll_tagging_slug(name)
55
56
 
56
57
  tag_dir = site.config["tag_#{type}_dir"]
57
58
  tag_dir = File.join(tag_dir, (pretty? ? name : ''))
58
59
 
59
- page_name = "#{pretty? ? 'index' : jekyll_tagging_slug(name)}#{site.layouts[data['layout']].ext}"
60
+ page_name = "#{pretty? ? 'index' : name}#{site.layouts[data['layout']].ext}"
60
61
 
61
62
  site.pages << TagPage.new(
62
63
  site, site.source, tag_dir, page_name, data
@@ -6,7 +6,7 @@ module Jekyll
6
6
 
7
7
  MAJOR = 1
8
8
  MINOR = 0
9
- TINY = 0
9
+ TINY = 1
10
10
 
11
11
  class << self
12
12
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-tagging
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
  - Arne Eilermann
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-06-10 00:00:00.000000000 Z
12
+ date: 2015-06-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ruby-nuggets
@@ -79,15 +79,13 @@ licenses:
79
79
  metadata: {}
80
80
  post_install_message: |2+
81
81
 
82
- jekyll-tagging-1.0.0 [2015-06-10]:
82
+ jekyll-tagging-1.0.1 [2015-06-11]:
83
83
 
84
- * Generate prettier urls for tag with whitespaces or non ASCII characters. ATTENTION: Your urls may change!
85
- * Added support for site.config["baseurl"]. (Tsukasa ŌMOTO)
86
- * Added trailing slashes to permalinks. (Pyry Kontio)
84
+ * Substitution of non ASCII characters and whitespaces, also when 'tag_permalink_style: pretty'.
87
85
 
88
86
  rdoc_options:
89
87
  - "--title"
90
- - jekyll-tagging Application documentation (v1.0.0)
88
+ - jekyll-tagging Application documentation (v1.0.1)
91
89
  - "--charset"
92
90
  - UTF-8
93
91
  - "--line-numbers"