jekyll-relative-urls 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +3 -0
- data/Gemfile.lock +2 -2
- data/jekyll-relative-urls.gemspec +3 -3
- data/lib/jekyll/tags/base.rb +3 -3
- data/lib/jekyll/url.rb +3 -3
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 679993844d159d8d93e7be387656292d3d2cfc45c7d7d40bef5dbc85304311b5
|
|
4
|
+
data.tar.gz: 4ce78e2b0c4b032bca6e70c6c11fa1e21b81cbb5b23ff26a033acd54cd90d2b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 871ad8b7444839125c6af02a6d69debe86831499555d79a00b2105505361aec6a60d5dd6f816754aeabab705c37a30e695928e66bb5bb249c0d7d87cc9912a06
|
|
7
|
+
data.tar.gz: 1082b7881471499e8112f19137477712a2974fa6b18135c5848dfe7530ab2fbeb1d6e177d520b7a88d0bc9650ce497cef547ce0bf94cb4eb6eaddb608bc920b2
|
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
jekyll-
|
|
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-
|
|
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.
|
|
6
|
+
gem.version = '0.0.2'
|
|
7
7
|
gem.authors = ['Sutty']
|
|
8
8
|
gem.email = ['hi@sutty.nl']
|
|
9
|
-
gem.description = '
|
|
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 = '
|
|
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) }
|
data/lib/jekyll/tags/base.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/>.
|
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.
|
|
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-
|
|
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:
|
|
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
|
-
-
|
|
79
|
+
- GPL-3.0+
|
|
78
80
|
metadata: {}
|
|
79
81
|
post_install_message:
|
|
80
82
|
rdoc_options: []
|