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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7336205a860a6b39469f177e0fe655a8d4e45eef
4
- data.tar.gz: c368edb5152708003d12abf168c62de83d7f906e
3
+ metadata.gz: 473251182466563e6ad34a4b931a28585fc7c8ee
4
+ data.tar.gz: c741567bc5a47f0ce9c84cdd0127e108bb4f7ec5
5
5
  SHA512:
6
- metadata.gz: 44dc6b098ec41c585671624edc64a20f7d413f5a0117f83ab91679dff85d2c0d4acf304c0838234fad4f14c88dc44d310e80a69dc104e80eae4133c4657ee5ff
7
- data.tar.gz: 14afc967f243ccee7168013fe20ed60d39b6b67dc7d608988a5cd931cec17e49b1a9f871aa816b06c003d22df4fa35eb8c5b3ba3ec3c8d2302bcc3149c356a5c
6
+ metadata.gz: f9c405aeb62ba847e12f39767efbd424ca8e61b0c7c4c007e7431550307c626d53230bfdfae395fc6611c21e55683aa8a79ef0fecd6ab8acaf4a7889323d33ac
7
+ data.tar.gz: 91253325a48a0d3a30c6ca506256b4202fcf065637754180450c3712a3eb54b01891bfdbc481f210659511603583210f34d90f740fe059d3e5ead41e7a44022a
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ### 1.0.0 - 2014-08-03
4
+
5
+ - Fixed UTF-8 encoding issue for older Ruby versions
6
+
3
7
  ### 1.0.0 - 2014-07-26
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -1,7 +1,11 @@
1
- # Octopress Link Blog
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 Link Blog features. Here are the defaults.
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:
@@ -3,7 +3,6 @@ require 'octopress-linkblog/configuration'
3
3
  require 'titlecase'
4
4
 
5
5
  require 'octopress-hooks'
6
- require 'jekyll'
7
6
 
8
7
  module Octopress
9
8
  module LinkBlog
@@ -1,3 +1,4 @@
1
+ # encoding: utf-8
1
2
  module Octopress
2
3
  unless defined? Octopress.config
3
4
  def self.config
@@ -1,7 +1,7 @@
1
1
  module Octopress
2
2
  module Tags
3
3
  module LinkBlog
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
6
6
  end
7
7
  end
@@ -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
 
@@ -1,7 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'octopress-linkblog', path: '../'
4
- gem 'octopress', path: '../../cli'
5
- gem 'octopress-hooks', path: '../../hooks'
6
- gem 'pry-debugger'
7
- gem 'clash'
3
+ gemspec path: "../"
@@ -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 class='article-link' href='/2014/05/25/awesome-things.html'><span class='post-marker post-marker-before'>★</span>&nbsp;Some Awesome&nbsp;Post</a>
10
+ title_link: <a href='/2014/05/25/awesome-things.html' class='article-link'><span class='post-marker post-marker-before'>★</span>&nbsp;Some Awesome&nbsp;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' href='http://timecube.com'>Some Link&nbsp;Post&nbsp;<span class='post-marker post-marker-after'>→</span></a>
10
+ title_link: <a href='http://timecube.com' class='article-link linkpost'>Some Link&nbsp;Post&nbsp;<span class='post-marker post-marker-after'>→</span></a>
11
11
 
12
12
  linkpost: true
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' href='http://timecube.com'>Some Link&nbsp;Post&nbsp;<span class='post-marker post-marker-after'>→</span></a>
10
+ title_link: <a href='http://timecube.com' class='article-link linkpost'>Some Link&nbsp;Post&nbsp;<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 class='article-link' href='/2014/05/25/awesome-things.html'><span class='post-marker post-marker-before'>★</span>&nbsp;Some Awesome&nbsp;Post</a>
23
+ title_link: <a href='/2014/05/25/awesome-things.html' class='article-link'><span class='post-marker post-marker-before'>★</span>&nbsp;Some Awesome&nbsp;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.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-07-28 00:00:00.000000000 Z
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