octopress-linkblog 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +6 -2
- data/lib/octopress-linkblog.rb +0 -1
- data/lib/octopress-linkblog/configuration.rb +1 -0
- data/lib/octopress-linkblog/version.rb +1 -1
- data/octopress-linkblog.gemspec +0 -1
- data/test/Gemfile +1 -5
- data/test/_expected/articles.html +1 -1
- data/test/_expected/linkposts.html +1 -1
- data/test/_expected/posts.html +2 -2
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 473251182466563e6ad34a4b931a28585fc7c8ee
|
4
|
+
data.tar.gz: c741567bc5a47f0ce9c84cdd0127e108bb4f7ec5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9c405aeb62ba847e12f39767efbd424ca8e61b0c7c4c007e7431550307c626d53230bfdfae395fc6611c21e55683aa8a79ef0fecd6ab8acaf4a7889323d33ac
|
7
|
+
data.tar.gz: 91253325a48a0d3a30c6ca506256b4202fcf065637754180450c3712a3eb54b01891bfdbc481f210659511603583210f34d90f740fe059d3e5ead41e7a44022a
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,7 +1,11 @@
|
|
1
|
-
# Octopress
|
1
|
+
# Octopress Linkblog
|
2
2
|
|
3
3
|
Adds link blogging features, along with some other niceties, to any Jekyll site.
|
4
4
|
|
5
|
+
[![Build Status](https://travis-ci.org/octopress/linkblog.svg)](https://travis-ci.org/octopress/linkblog)
|
6
|
+
[![Gem Version](http://img.shields.io/gem/v/octopress-linkblog.svg)](https://rubygems.org/gems/octopress-linkblog)
|
7
|
+
[![License](http://img.shields.io/:license-mit-blue.svg)](http://octopress.mit-license.org)
|
8
|
+
|
5
9
|
## Installation
|
6
10
|
|
7
11
|
Add this line to your application's Gemfile:
|
@@ -69,7 +73,7 @@ of post.
|
|
69
73
|
|
70
74
|
## Configuration
|
71
75
|
|
72
|
-
In your site's `_octopress.yml` you can configure the
|
76
|
+
In your site's `_octopress.yml` you can configure the Linkblog features. Here are the defaults.
|
73
77
|
|
74
78
|
```ruby
|
75
79
|
linkpost:
|
data/lib/octopress-linkblog.rb
CHANGED
data/octopress-linkblog.gemspec
CHANGED
@@ -18,7 +18,6 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
spec.add_runtime_dependency "jekyll", "~> 2.0"
|
22
21
|
spec.add_runtime_dependency "octopress-hooks", "~> 2.1"
|
23
22
|
spec.add_runtime_dependency "titlecase"
|
24
23
|
|
data/test/Gemfile
CHANGED
@@ -7,7 +7,7 @@ text: ★ Some Awesome Post
|
|
7
7
|
Urls:
|
8
8
|
normal: /2014/05/25/awesome-things.html
|
9
9
|
title_url: /2014/05/25/awesome-things.html
|
10
|
-
title_link: <a
|
10
|
+
title_link: <a href='/2014/05/25/awesome-things.html' class='article-link'><span class='post-marker post-marker-before'>★</span> Some Awesome Post</a>
|
11
11
|
|
12
12
|
linkpost: false
|
13
13
|
|
@@ -7,7 +7,7 @@ text: Some Link Post →
|
|
7
7
|
Urls:
|
8
8
|
normal: /2014/06/25/some-linkpost.html
|
9
9
|
title_url: http://timecube.com
|
10
|
-
title_link: <a class='article-link linkpost'
|
10
|
+
title_link: <a href='http://timecube.com' class='article-link linkpost'>Some Link Post <span class='post-marker post-marker-after'>→</span></a>
|
11
11
|
|
12
12
|
linkpost: true
|
13
13
|
|
data/test/_expected/posts.html
CHANGED
@@ -7,7 +7,7 @@ text: Some Link Post →
|
|
7
7
|
Urls:
|
8
8
|
normal: /2014/06/25/some-linkpost.html
|
9
9
|
title_url: http://timecube.com
|
10
|
-
title_link: <a class='article-link linkpost'
|
10
|
+
title_link: <a href='http://timecube.com' class='article-link linkpost'>Some Link Post <span class='post-marker post-marker-after'>→</span></a>
|
11
11
|
|
12
12
|
linkpost: true
|
13
13
|
|
@@ -20,7 +20,7 @@ text: ★ Some Awesome Post
|
|
20
20
|
Urls:
|
21
21
|
normal: /2014/05/25/awesome-things.html
|
22
22
|
title_url: /2014/05/25/awesome-things.html
|
23
|
-
title_link: <a
|
23
|
+
title_link: <a href='/2014/05/25/awesome-things.html' class='article-link'><span class='post-marker post-marker-before'>★</span> Some Awesome Post</a>
|
24
24
|
|
25
25
|
linkpost: false
|
26
26
|
|
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octopress-linkblog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: jekyll
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '2.0'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '2.0'
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: octopress-hooks
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|