jekyll_post_files 1.0.5 → 1.0.6

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: e186f35615449ee1e71d05eedd8ca90a4d44b446
4
- data.tar.gz: 3b9bb202ea17ce86cf6a0602308dc7dd7ef7027d
3
+ metadata.gz: 39b89f540cf4a14a9fc32554b5a722cb42a34609
4
+ data.tar.gz: 7f54ea0a7e3bc3ea7509cad6b1e87d13125c31d8
5
5
  SHA512:
6
- metadata.gz: 7895c34af3d092028e50282bd65724c134852e266fcf382d53776857611910497637aa58880cf77c21d50d0cf941815ed301b0008d0a9acf568b1e8f43f803b9
7
- data.tar.gz: 4411b830897828d25758788bba82588da11e5d97079c94a367140ea45da93ce5fee135132caf99915c77d5ebe379f2afb139a4f3af1018673f1b55123c86b59e
6
+ metadata.gz: d326ea21df2357db1ef1edb7897ba4cb5a7af6a904a85b8e7d0165bf207faee58b27839a15328a3b58737374c8d4edf50e13eb04e8da9e34d4072b6d502e12f4
7
+ data.tar.gz: 2183d253aa913f849ab9101156cfdf08a3ee6907355db91739a3e60ef94f5883ae8ba99d3d7571e4351cc587de2f8895f296432f902ed7620c15c23efcd1f7b4
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Nicolas Hoizey"]
10
10
  spec.email = ["nicolas@hoizey.com"]
11
11
 
12
- spec.summary = %q{In Jekyll, copy static files from the _posts to the _site folder.}
13
- spec.description = %q{When using Jekyll, this plugin copies all static files that are in the source _posts subfolder of a Markdown post to the destination subfolder in _site.}
14
- spec.homepage = "https://github.com/nhoizey/jekyll_post_files"
12
+ spec.summary = %q{A Jekyll plugin to keep posts assets alongside their Markdown files}
13
+ spec.description = %q{This plugin takes any file that is in posts folders, and copy them to the folder in which the post HTML page will be created.}
14
+ spec.homepage = "https://nhoizey.github.io/jekyll_post_files/"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
@@ -1,3 +1,3 @@
1
1
  module JekyllPostFiles
2
- VERSION = "1.0.5"
2
+ VERSION = "1.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll_post_files
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas Hoizey
@@ -38,8 +38,8 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
- description: When using Jekyll, this plugin copies all static files that are in the
42
- source _posts subfolder of a Markdown post to the destination subfolder in _site.
41
+ description: This plugin takes any file that is in posts folders, and copy them to
42
+ the folder in which the post HTML page will be created.
43
43
  email:
44
44
  - nicolas@hoizey.com
45
45
  executables: []
@@ -56,7 +56,7 @@ files:
56
56
  - jekyll_post_files.gemspec
57
57
  - lib/jekyll_post_files.rb
58
58
  - lib/jekyll_post_files/version.rb
59
- homepage: https://github.com/nhoizey/jekyll_post_files
59
+ homepage: https://nhoizey.github.io/jekyll_post_files/
60
60
  licenses:
61
61
  - MIT
62
62
  metadata: {}
@@ -79,5 +79,5 @@ rubyforge_project:
79
79
  rubygems_version: 2.6.4
80
80
  signing_key:
81
81
  specification_version: 4
82
- summary: In Jekyll, copy static files from the _posts to the _site folder.
82
+ summary: A Jekyll plugin to keep posts assets alongside their Markdown files
83
83
  test_files: []