octopress-ink 1.0.0.rc.6 → 1.0.0.rc.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -5
- data/lib/octopress-ink/jekyll/hooks.rb +6 -1
- data/lib/octopress-ink/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65b8ffe436f7d3a98b496df4a39c4a5889072e87
|
4
|
+
data.tar.gz: d580ceb6faed7b3aced9533e5422c535ad92b38c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa75320842ce5f449688d831e2e6902783c86b98d30917c37ca04e7680744efebea102e2d5ee37a5160db096a73c8038f81498a4f38def2ae72ebe4dc2225a7f
|
7
|
+
data.tar.gz: 59292e1a588bdad1bf9e9cbb77576e21d4a0c045e2fadcda7ce92d34025376b3de86297f9a39994cc6e3a9d50800f5867b269c40eb4158e12a319aff47757df7
|
data/CHANGELOG.md
CHANGED
@@ -1,20 +1,24 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## Current released version
|
4
|
+
|
5
|
+
### 1.0.0 RC7 - 2014-06-08
|
6
|
+
|
7
|
+
- New: Added `excerpted` post var, true if post.excerpt is shorted than post.content.
|
8
|
+
|
9
|
+
## Past versions
|
10
|
+
|
3
11
|
### 1.0.0 RC6 - 2014-06-07
|
4
12
|
|
5
|
-
- Fixed:
|
13
|
+
- Fixed: Gemspec scaffold does not include Ink's pre-release version numbers.
|
6
14
|
- Fixed: Better formatting for ordinal dates.
|
7
15
|
- Other minor bug fixes
|
8
16
|
|
9
|
-
## Current released version
|
10
|
-
|
11
17
|
### 1.0.0 RC5 - 2014-06-06
|
12
18
|
|
13
19
|
- New: site.linkposts loops through linkposts
|
14
20
|
- New: site.articles loops through non-linkpost articles
|
15
21
|
|
16
|
-
## Past versions
|
17
|
-
|
18
22
|
### 1.0.0 RC4 - 2014-05-28
|
19
23
|
|
20
24
|
- Improved: Plugin scaffold does a better job of handling gem names with dashes.
|
@@ -50,6 +50,10 @@ module Jekyll
|
|
50
50
|
config = Octopress::Ink.config['post']
|
51
51
|
end
|
52
52
|
|
53
|
+
if extract_excerpt.to_s.strip != content.strip
|
54
|
+
excerpted = true
|
55
|
+
end
|
56
|
+
|
53
57
|
if Octopress::Ink.config['titlecase']
|
54
58
|
Octopress::Utils.titlecase!(data['title'])
|
55
59
|
end
|
@@ -58,7 +62,8 @@ module Jekyll
|
|
58
62
|
'title_text' => title_text(config, data['title']),
|
59
63
|
'title_html' => title_html(config, data['title']),
|
60
64
|
'title_url' => linkpost || self.url,
|
61
|
-
'linkpost' => !linkpost.nil
|
65
|
+
'linkpost' => !linkpost.nil?,
|
66
|
+
'excerpted' => excerpted
|
62
67
|
}
|
63
68
|
end
|
64
69
|
|