jekyll-relative-urls 0.0.1 → 0.0.2

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
  SHA256:
3
- metadata.gz: a898bfd510bb318f34fc929c62e1980917f717548184d8d013db480044a39100
4
- data.tar.gz: 6211148132a43d6e6608e6bf40f763a33178017e0ab721fed0b9cd92ab0e196c
3
+ metadata.gz: 679993844d159d8d93e7be387656292d3d2cfc45c7d7d40bef5dbc85304311b5
4
+ data.tar.gz: 4ce78e2b0c4b032bca6e70c6c11fa1e21b81cbb5b23ff26a033acd54cd90d2b0
5
5
  SHA512:
6
- metadata.gz: 6fd98bc1b405b79ac9668cd8f0ed447355d00c708ff2cc3152903488debff3050c6790fabbee89a71090fbd1fd8e983d76c776898378669303104139634fc807
7
- data.tar.gz: b495c1fa7bf9e920f5305bbe25cf7069ab9d62ec2193c439c88a3c050dcd3f016c36602418634a385ca8ffee717a79d7b295ac891eaf2245e9e4a8ffbf461ed5
6
+ metadata.gz: 871ad8b7444839125c6af02a6d69debe86831499555d79a00b2105505361aec6a60d5dd6f816754aeabab705c37a30e695928e66bb5bb249c0d7d87cc9912a06
7
+ data.tar.gz: 1082b7881471499e8112f19137477712a2974fa6b18135c5848dfe7530ab2fbeb1d6e177d520b7a88d0bc9650ce497cef547ce0bf94cb4eb6eaddb608bc920b2
data/.rubocop.yml CHANGED
@@ -2,3 +2,6 @@
2
2
  require: rubocop-performance
3
3
  Style/AsciiComments:
4
4
  Enabled: false
5
+ Naming/FileName:
6
+ Exclude:
7
+ - 'lib/jekyll-relative-urls.rb'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jekyll-pandoc-multiple-formats (3.8.5)
4
+ jekyll-relative-urls (0.0.1)
5
5
  jekyll (~> 3.8.5)
6
6
 
7
7
  GEM
@@ -80,7 +80,7 @@ PLATFORMS
80
80
  ruby
81
81
 
82
82
  DEPENDENCIES
83
- jekyll-pandoc-multiple-formats!
83
+ jekyll-relative-urls!
84
84
  rubocop (~> 0.68)
85
85
  rubocop-performance (~> 0)
86
86
 
@@ -3,13 +3,13 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.name = 'jekyll-relative-urls'
6
- gem.version = '0.0.1'
6
+ gem.version = '0.0.2'
7
7
  gem.authors = ['Sutty']
8
8
  gem.email = ['hi@sutty.nl']
9
- gem.description = 'A jekyll plugin for transportable sites'
9
+ gem.description = 'It allows you to generate sites that work without changes even if you put them on one or several levels of subdirectories, thus making them transportable :)'
10
10
  gem.summary = 'A jekyll plugin for transportable sites'
11
11
  gem.homepage = 'https://0xacab.org/sutty/jekyll/jekyll-relative-urls'
12
- gem.license = 'GPL3'
12
+ gem.license = 'GPL-3.0+'
13
13
 
14
14
  gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
15
15
  gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
@@ -1,17 +1,17 @@
1
1
  # Copyright (c) 2019 Sutty <hi@sutty.nl>
2
2
  #
3
3
  # This file is part of jekyll-relative-urls
4
- #
4
+ #
5
5
  # jekyll-relative-urls is free software: you can redistribute it and/or
6
6
  # modify it under the terms of the GNU General Public License as
7
7
  # published by the Free Software Foundation, either version 3 of the
8
8
  # License, or (at your option) any later version.
9
- #
9
+ #
10
10
  # jekyll-relative-urls is distributed in the hope that it will be
11
11
  # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
12
12
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
13
  # General Public License for more details.
14
- #
14
+ #
15
15
  # You should have received a copy of the GNU General Public License
16
16
  # along with jekyll-relative-urls. If not, see
17
17
  # <https://www.gnu.org/licenses/>.
data/lib/jekyll/url.rb CHANGED
@@ -1,17 +1,17 @@
1
1
  # Copyright (c) 2019 Sutty <hi@sutty.nl>
2
2
  #
3
3
  # This file is part of jekyll-relative-urls
4
- #
4
+ #
5
5
  # jekyll-relative-urls is free software: you can redistribute it and/or
6
6
  # modify it under the terms of the GNU General Public License as
7
7
  # published by the Free Software Foundation, either version 3 of the
8
8
  # License, or (at your option) any later version.
9
- #
9
+ #
10
10
  # jekyll-relative-urls is distributed in the hope that it will be
11
11
  # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
12
12
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
13
  # General Public License for more details.
14
- #
14
+ #
15
15
  # You should have received a copy of the GNU General Public License
16
16
  # along with jekyll-relative-urls. If not, see
17
17
  # <https://www.gnu.org/licenses/>.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-relative-urls
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sutty
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-10 00:00:00.000000000 Z
11
+ date: 2019-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -52,7 +52,9 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: A jekyll plugin for transportable sites
55
+ description: It allows you to generate sites that work without changes even if you
56
+ put them on one or several levels of subdirectories, thus making them transportable
57
+ :)
56
58
  email:
57
59
  - hi@sutty.nl
58
60
  executables: []
@@ -74,7 +76,7 @@ files:
74
76
  - lib/jekyll/url.rb
75
77
  homepage: https://0xacab.org/sutty/jekyll/jekyll-relative-urls
76
78
  licenses:
77
- - GPL3
79
+ - GPL-3.0+
78
80
  metadata: {}
79
81
  post_install_message:
80
82
  rdoc_options: []