jgd 1.11 → 1.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.0pdd.yml +4 -0
- data/.github/workflows/rake.yml +24 -0
- data/.rubocop.yml +4 -1
- data/.rultor.yml +9 -8
- data/Gemfile +26 -0
- data/README.md +38 -22
- data/Rakefile +4 -24
- data/bin/jgd +21 -0
- data/jgd.gemspec +29 -17
- data/logo.svg +19 -0
- data/renovate.json +6 -0
- metadata +15 -98
- data/.travis.yml +0 -15
- data/TEAM.md +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1c3c7689436800f04f9f975725f36102c5cfa493d10928bd1673fe1fbdf92efa
|
4
|
+
data.tar.gz: a6557dc6f969be3c0a4ad03cbd878ca0f6e75490b196bdf285d67ce714bb4ed9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5443f605d3afb155bbb7341b4af684906e87befd25a2d82795078594f691eb9eb5fe15040fccb3ada22e51b0c5e584fb7483f40bc42b5a8d8fef2d5875c830b7
|
7
|
+
data.tar.gz: 7231a384ee3df00ab6c42f29751b896c9be629bca36428f0a90bc01b10ee02862b73c0ab8f8c3852fd443d32f73e3bf4e1411a2d3afe1e18bb7a31360f203ddc
|
data/.0pdd.yml
CHANGED
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
name: rake
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
pull_request:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
jobs:
|
11
|
+
test:
|
12
|
+
name: test
|
13
|
+
strategy:
|
14
|
+
matrix:
|
15
|
+
os: [ubuntu-20.04, macos-12, windows-2022]
|
16
|
+
ruby: [2.7, 3.1]
|
17
|
+
runs-on: ${{ matrix.os }}
|
18
|
+
steps:
|
19
|
+
- uses: actions/checkout@v3
|
20
|
+
- uses: ruby/setup-ruby@v1
|
21
|
+
with:
|
22
|
+
ruby-version: ${{ matrix.ruby }}
|
23
|
+
- run: bundle update
|
24
|
+
- run: bundle exec rake
|
data/.rubocop.yml
CHANGED
@@ -3,6 +3,9 @@ AllCops:
|
|
3
3
|
- 'bin/**/*'
|
4
4
|
- 'assets/**/*'
|
5
5
|
DisplayCopNames: true
|
6
|
+
TargetRubyVersion: '2.3'
|
7
|
+
NewCops: enable
|
8
|
+
SuggestExtensions: false
|
6
9
|
|
7
10
|
Lint/RescueException:
|
8
11
|
Enabled: false
|
@@ -14,5 +17,5 @@ Metrics/AbcSize:
|
|
14
17
|
Max: 60
|
15
18
|
Metrics/BlockLength:
|
16
19
|
Max: 50
|
17
|
-
|
20
|
+
Layout/MultilineMethodCallIndentation:
|
18
21
|
Enabled: false
|
data/.rultor.yml
CHANGED
@@ -1,22 +1,23 @@
|
|
1
|
+
docker:
|
2
|
+
image: yegor256/rultor-image:1.21.0
|
3
|
+
readers:
|
4
|
+
- "urn:github:526301"
|
1
5
|
decrypt:
|
2
6
|
rubygems.yml: repo/rubygems.yml.asc
|
3
7
|
install: |-
|
4
8
|
git config --global user.email "test@example.com"
|
5
9
|
git config --global user.name "Test"
|
10
|
+
sudo bundle install --no-color "--gemfile=$(pwd)/Gemfile"
|
6
11
|
release:
|
7
12
|
script: |-
|
13
|
+
bundle exec rake
|
8
14
|
./test.sh
|
9
15
|
rm -rf *.gem
|
10
16
|
sed -i "s/2.0.snapshot/${tag}/g" jgd.gemspec
|
11
17
|
gem build jgd.gemspec
|
12
18
|
chmod 0600 ../rubygems.yml
|
13
19
|
gem push *.gem --config-file ../rubygems.yml
|
14
|
-
commanders:
|
15
|
-
- yegor256
|
16
|
-
architect:
|
17
|
-
- yegor256
|
18
|
-
- davvd
|
19
20
|
merge:
|
20
|
-
|
21
|
-
|
22
|
-
|
21
|
+
script: |-
|
22
|
+
bundle exec rake
|
23
|
+
./test.sh
|
data/Gemfile
CHANGED
@@ -1,2 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2014-2019 Yegor Bugayenko
|
4
|
+
#
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
# of this software and associated documentation files (the 'Software'), to deal
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
10
|
+
# furnished to do so, subject to the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
13
|
+
# copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
# SOFTWARE.
|
22
|
+
|
1
23
|
source 'https://rubygems.org'
|
2
24
|
gemspec
|
25
|
+
|
26
|
+
gem 'rake', '13.0.6', require: false
|
27
|
+
gem 'rubocop', '1.54.0', require: false
|
28
|
+
gem 'rubocop-rspec', '2.22.0', require: false
|
data/README.md
CHANGED
@@ -1,41 +1,40 @@
|
|
1
|
-
|
1
|
+
<img src="/logo.svg" width="64px" height="64px"/>
|
2
|
+
|
3
|
+
[![Managed by Zerocracy](https://www.0crat.com/badge/C3RFVLU72.svg)](https://www.0crat.com/p/C3RFVLU72)
|
2
4
|
[![DevOps By Rultor.com](http://www.rultor.com/b/yegor256/jekyll-github-deploy)](http://www.rultor.com/p/yegor256/jekyll-github-deploy)
|
3
|
-
[![We recommend RubyMine](
|
5
|
+
[![We recommend RubyMine](https://www.elegantobjects.org/rubymine.svg)](https://www.jetbrains.com/ruby/)
|
4
6
|
|
5
|
-
[![
|
7
|
+
[![rake](https://github.com/yegor256/jekyll-github-deploy/actions/workflows/rake.yml/badge.svg)](https://github.com/yegor256/jekyll-github-deploy/actions/workflows/rake.yml)
|
6
8
|
[![Gem Version](https://badge.fury.io/rb/jgd.svg)](http://badge.fury.io/rb/jgd)
|
7
|
-
[![
|
8
|
-
[![
|
9
|
-
|
10
|
-
## What is jgd ?
|
11
|
-
|
12
|
-
If you use some plugins with your Jekyll blog, chances are you can not
|
13
|
-
have your blog generated by GitHub.
|
9
|
+
[![Hits-of-Code](https://hitsofcode.com/github/yegor256/jekyll-github-deploy)](https://hitsofcode.com/view/github/yegor256/jekyll-github-deploy)
|
10
|
+
[![License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/yegor256/jekyll-github-deploy/blob/master/LICENSE.txt)
|
14
11
|
|
12
|
+
If you use some plugins with your [Jekyll](https://jekyllrb.com/) blog, chances are you can not
|
13
|
+
have your blog generated by [GitHub Pages](https://pages.github.com/).
|
14
|
+
First of all, because they [do not allow](https://help.github.com/en/articles/adding-jekyll-plugins-to-a-github-pages-site)
|
15
|
+
custom plugins.
|
15
16
|
This is where jekyll-github-deploy (a.k.a. jgd) comes in: it will
|
16
17
|
automatically build your Jekyll blog and push it to your gh-pages
|
17
|
-
branch.
|
18
|
-
|
19
|
-
|
18
|
+
branch. You may want to read this blog post before you start
|
19
|
+
using this tool:
|
20
|
+
[_Deploy Jekyll to GitHub Pages_](https://www.yegor256.com/2014/06/24/jekyll-github-deploy.html).
|
20
21
|
|
21
22
|
It is assumed that your blog is in the home directory of your repo.
|
22
23
|
|
23
24
|
Install it first:
|
24
25
|
|
25
26
|
```bash
|
26
|
-
gem install jgd
|
27
|
+
$ gem install jgd
|
27
28
|
```
|
28
29
|
|
29
30
|
Run it locally:
|
30
31
|
|
31
32
|
```bash
|
32
|
-
jgd
|
33
|
+
$ jgd
|
33
34
|
```
|
34
35
|
|
35
36
|
Now your site is deployed to `gh-pages` branch of your repo. Done.
|
36
37
|
|
37
|
-
## Command Line Options
|
38
|
-
|
39
38
|
Below is a list of all command line options.
|
40
39
|
|
41
40
|
| Option | Description |
|
@@ -47,8 +46,6 @@ Below is a list of all command line options.
|
|
47
46
|
| `-d` or `--drafts` | Adds the `--drafts` option to Jekyll so that it will build draft posts. |
|
48
47
|
| `-h` or `--help` | Displays a list of all options. |
|
49
48
|
|
50
|
-
## Production variables
|
51
|
-
|
52
49
|
If you need to have different values for your deployed blog, just add a
|
53
50
|
`_config-deploy.yml` file in your project's root and you're set. Values
|
54
51
|
re-defined in `_config-deploy.yml` will override those defined in
|
@@ -101,12 +98,31 @@ script:
|
|
101
98
|
- jgd -u git@github.com:yegor256/blog.git
|
102
99
|
```
|
103
100
|
|
104
|
-
|
101
|
+
## Building locally
|
105
102
|
|
106
|
-
# Building locally
|
107
103
|
In order to build a package locally run below commands.
|
108
104
|
|
109
105
|
```bash
|
110
106
|
gem build jgd.gemspec
|
111
107
|
gem install jgd-<version>.gem
|
112
|
-
```
|
108
|
+
```
|
109
|
+
|
110
|
+
## How to Contribute
|
111
|
+
|
112
|
+
First, install
|
113
|
+
[Ruby 2.3+](https://www.ruby-lang.org/en/documentation/installation/),
|
114
|
+
[Rubygems](https://rubygems.org/pages/download),
|
115
|
+
and
|
116
|
+
[Bundler](https://bundler.io/).
|
117
|
+
Then:
|
118
|
+
|
119
|
+
```bash
|
120
|
+
$ bundle update
|
121
|
+
$ bundle exec rake --quiet
|
122
|
+
$ ./tesh.sh
|
123
|
+
```
|
124
|
+
|
125
|
+
The build has to be clean. If it's not, [submit an issue](https://github.com/zold-io/out/issues).
|
126
|
+
|
127
|
+
Then, make your changes, make sure the build is still clean,
|
128
|
+
and [submit a pull request](https://www.yegor256.com/2014/04/15/github-guidelines.html).
|
data/Rakefile
CHANGED
@@ -1,7 +1,6 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
# Copyright (c) 2014
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2014-2019 Yegor Bugayenko
|
5
4
|
#
|
6
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -23,7 +22,6 @@
|
|
23
22
|
|
24
23
|
require 'rubygems'
|
25
24
|
require 'rake'
|
26
|
-
require 'rdoc'
|
27
25
|
require 'rake/clean'
|
28
26
|
|
29
27
|
CLEAN = FileList['coverage', 'rdoc']
|
@@ -36,27 +34,9 @@ def version
|
|
36
34
|
Gem::Specification.load(Dir['*.gemspec'].first).version
|
37
35
|
end
|
38
36
|
|
39
|
-
task default: [
|
40
|
-
|
41
|
-
require 'rake/testtask'
|
42
|
-
desc 'Run all unit tests'
|
43
|
-
Rake::TestTask.new(:test) do |test|
|
44
|
-
test.libs << 'lib' << 'test'
|
45
|
-
test.pattern = 'test/**/test_*.rb'
|
46
|
-
test.verbose = false
|
47
|
-
end
|
48
|
-
|
49
|
-
require 'rdoc/task'
|
50
|
-
desc 'Build RDoc documentation'
|
51
|
-
Rake::RDocTask.new do |rdoc|
|
52
|
-
rdoc.rdoc_dir = 'rdoc'
|
53
|
-
rdoc.title = "#{name} #{version}"
|
54
|
-
rdoc.rdoc_files.include('README*')
|
55
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
56
|
-
end
|
37
|
+
task default: %i[clean rubocop]
|
57
38
|
|
58
39
|
require 'rubocop/rake_task'
|
59
|
-
desc 'Run RuboCop on all directories'
|
60
40
|
RuboCop::RakeTask.new(:rubocop) do |task|
|
61
41
|
task.fail_on_error = true
|
62
42
|
task.requires << 'rubocop-rspec'
|
data/bin/jgd
CHANGED
@@ -1,4 +1,25 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# Copyright (c) 2014-2019 Yegor Bugayenko
|
4
|
+
#
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
# of this software and associated documentation files (the 'Software'), to deal
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
10
|
+
# furnished to do so, subject to the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
13
|
+
# copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
# SOFTWARE.
|
22
|
+
|
2
23
|
STDOUT.sync = true
|
3
24
|
|
4
25
|
require 'trollop'
|
data/jgd.gemspec
CHANGED
@@ -1,31 +1,43 @@
|
|
1
|
-
#
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2014-2019 Yegor Bugayenko
|
4
|
+
#
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
# of this software and associated documentation files (the 'Software'), to deal
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
10
|
+
# furnished to do so, subject to the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
13
|
+
# copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
# SOFTWARE.
|
22
|
+
|
2
23
|
require 'English'
|
24
|
+
|
3
25
|
Gem::Specification.new do |s|
|
4
|
-
s.
|
5
|
-
|
6
|
-
s.required_rubygems_version = Gem::Requirement.new('>= 0')
|
7
|
-
end
|
8
|
-
s.rubygems_version = '2.2.2'
|
9
|
-
s.required_ruby_version = '>= 1.9.3'
|
26
|
+
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
|
27
|
+
s.required_ruby_version = '>= 2.3'
|
10
28
|
s.name = 'jgd'
|
11
|
-
s.version = '1.
|
29
|
+
s.version = '1.13.0'
|
12
30
|
s.license = 'MIT'
|
13
31
|
s.summary = 'Jekyll Github Deploy'
|
14
32
|
s.description = 'Automated deployment of your Jekyll blog to Github Pages'
|
15
33
|
s.authors = ['Yegor Bugayenko']
|
16
|
-
s.email = '
|
34
|
+
s.email = 'yegor256@gmail.com'
|
17
35
|
s.homepage = 'http://github.com/yegor256/jekyll-github-deploy'
|
18
36
|
s.files = `git ls-files`.split($RS)
|
19
37
|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
20
|
-
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
21
38
|
s.rdoc_options = ['--charset=UTF-8']
|
22
39
|
s.extra_rdoc_files = ['README.md', 'LICENSE.txt']
|
23
|
-
s.add_runtime_dependency('trollop', '2.1.2')
|
24
40
|
s.add_runtime_dependency('jekyll', '>=1.5.1')
|
25
|
-
s.
|
26
|
-
s.
|
27
|
-
s.add_development_dependency 'minitest', '5.4.0'
|
28
|
-
s.add_development_dependency 'rubocop', '0.46.0'
|
29
|
-
s.add_development_dependency 'rubocop-rspec', '1.8.0'
|
30
|
-
s.add_development_dependency 'rspec-rails', '2.13'
|
41
|
+
s.add_runtime_dependency('trollop', '2.9.9')
|
42
|
+
s.metadata['rubygems_mfa_required'] = 'true'
|
31
43
|
end
|
data/logo.svg
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="314px" height="314px" viewBox="0 0 314 314" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
3
|
+
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
|
4
|
+
<title>Group 2</title>
|
5
|
+
<desc>Created with Sketch.</desc>
|
6
|
+
<defs></defs>
|
7
|
+
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
8
|
+
<g id="Group-2">
|
9
|
+
<g id="Group">
|
10
|
+
<circle id="Oval" fill="#053C5E" cx="157" cy="157" r="157"></circle>
|
11
|
+
<rect id="Rectangle" fill="#2B2B2B" x="0" y="234" width="146" height="68"></rect>
|
12
|
+
<text id="jgd" font-family="CourierNewPS-BoldMT, Courier New" font-size="50" font-weight="bold" fill="#FFFFFF">
|
13
|
+
<tspan x="28" y="282">jgd</tspan>
|
14
|
+
</text>
|
15
|
+
<path d="M135.676765,111.215287 C135.211714,113.540467 132.770932,120.688823 130.252813,127.100603 C127.734621,133.512383 125.2898,140.431445 124.819828,142.476214 C123.6868,147.405663 121.517836,147.185477 119.69487,141.95608 C116.899865,133.938362 105.171362,111.043501 103.859129,111.043501 C100.420089,111.043501 101.508757,114.986149 109.1771,130.30227 C113.739327,139.414532 118.032086,147.448041 118.716515,148.15443 C120.694817,150.196115 120.172626,154.319657 117.358599,158.877992 C113.567467,165.019055 107.570942,183.721189 108.054206,187.896804 C108.804956,194.383204 112.436054,192.210274 113.355359,184.724515 C114.48376,175.535577 120.945556,159.641154 124.897459,156.333653 C127.109021,154.482778 128.268636,151.905536 128.573284,148.163978 C128.818001,145.157747 131.906711,135.560972 135.437115,126.837819 C138.96752,118.114666 141.511492,110.079835 141.090434,108.982574 C139.755727,105.504315 136.554941,106.824333 135.676765,111.215287 M174.714659,126.841564 C169.37392,129.699438 169.197653,130.049915 167.452978,141.283475 C165.577352,153.360398 165.225112,168.513913 166.548289,180.203784 L167.566817,189.202501 L161.346213,191.9541 C154.601949,194.937416 150.91195,200.302465 153.156708,203.861146 C155.104824,206.949562 157.09025,206.70198 157.571826,203.310532 C158.083734,199.706169 166.097413,193.204052 170.29418,192.987978 C172.116999,192.894116 173.522874,191.717021 173.97823,189.903529 C174.383277,188.290613 177.740353,184.944554 181.438431,182.467858 C188.546172,177.707551 194.317883,170.450278 194.317883,166.273341 C194.317883,162.684548 189.493165,158.361603 185.487795,158.361603 C180.701636,158.361603 180.027195,155.239403 183.731222,150.229385 C188.308065,144.038966 188.284856,130.867646 183.690534,127.147387 C179.896537,124.075276 179.885006,124.074836 174.714659,126.841564 M182.67318,134.240439 C184.752542,140.153164 174.808961,161.185104 171.588639,157.68562 C169.868715,155.81653 172.863122,135.012708 175.266374,132.134564 C177.872553,129.013319 181.163896,129.949075 182.67318,134.240439 M184.854262,162.269586 C190.589839,163.855621 189.673839,167.881335 181.645765,176.371155 C177.281618,180.986262 173.904933,183.573859 173.371946,182.711474 C172.876636,181.91012 172.127869,176.711937 171.707987,171.159972 L170.944531,161.065463 L176.209475,161.200234 C179.105172,161.274339 182.995308,161.755548 184.854262,162.269586 M132.642184,172.492256 C131.593837,175.224098 133.152917,177.288844 136.264027,177.288844 C139.014965,177.288844 139.431396,176.221769 138.067531,172.667568 C137.039234,169.987871 133.645289,169.878218 132.642184,172.492256 M203.781503,185.840798 C203.781503,187.657595 209.264724,193.512152 210.966361,193.512152 C212.534035,193.512152 211.991059,187.391138 210.270768,185.670847 C208.092403,183.492409 203.781503,183.605293 203.781503,185.840798" id="Fill-6" fill="#427B8A" fill-rule="nonzero"></path>
|
16
|
+
</g>
|
17
|
+
</g>
|
18
|
+
</g>
|
19
|
+
</svg>
|
data/renovate.json
ADDED
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jgd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: trollop
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - '='
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 2.1.2
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - '='
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 2.1.2
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: jekyll
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -39,91 +25,21 @@ dependencies:
|
|
39
25
|
- !ruby/object:Gem::Version
|
40
26
|
version: 1.5.1
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - '='
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: 0.7.0
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - '='
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 0.7.0
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: rdoc
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - '='
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '3.11'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - '='
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '3.11'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: minitest
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - '='
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: 5.4.0
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - '='
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: 5.4.0
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: rubocop
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - '='
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: 0.46.0
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - '='
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: 0.46.0
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: rubocop-rspec
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - '='
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: 1.8.0
|
104
|
-
type: :development
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - '='
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: 1.8.0
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: rspec-rails
|
28
|
+
name: trollop
|
113
29
|
requirement: !ruby/object:Gem::Requirement
|
114
30
|
requirements:
|
115
31
|
- - '='
|
116
32
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
118
|
-
type: :
|
33
|
+
version: 2.9.9
|
34
|
+
type: :runtime
|
119
35
|
prerelease: false
|
120
36
|
version_requirements: !ruby/object:Gem::Requirement
|
121
37
|
requirements:
|
122
38
|
- - '='
|
123
39
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
40
|
+
version: 2.9.9
|
125
41
|
description: Automated deployment of your Jekyll blog to Github Pages
|
126
|
-
email:
|
42
|
+
email: yegor256@gmail.com
|
127
43
|
executables:
|
128
44
|
- jgd
|
129
45
|
extensions: []
|
@@ -132,25 +48,27 @@ extra_rdoc_files:
|
|
132
48
|
- LICENSE.txt
|
133
49
|
files:
|
134
50
|
- ".0pdd.yml"
|
51
|
+
- ".github/workflows/rake.yml"
|
135
52
|
- ".gitignore"
|
136
53
|
- ".pdd"
|
137
54
|
- ".rubocop.yml"
|
138
55
|
- ".rultor.yml"
|
139
|
-
- ".travis.yml"
|
140
56
|
- Gemfile
|
141
57
|
- LICENSE.txt
|
142
58
|
- README.md
|
143
59
|
- Rakefile
|
144
|
-
- TEAM.md
|
145
60
|
- bash/deploy.sh
|
146
61
|
- bin/jgd
|
147
62
|
- jgd.gemspec
|
63
|
+
- logo.svg
|
64
|
+
- renovate.json
|
148
65
|
- rubygems.yml.asc
|
149
66
|
- test.sh
|
150
67
|
homepage: http://github.com/yegor256/jekyll-github-deploy
|
151
68
|
licenses:
|
152
69
|
- MIT
|
153
|
-
metadata:
|
70
|
+
metadata:
|
71
|
+
rubygems_mfa_required: 'true'
|
154
72
|
post_install_message:
|
155
73
|
rdoc_options:
|
156
74
|
- "--charset=UTF-8"
|
@@ -160,16 +78,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
78
|
requirements:
|
161
79
|
- - ">="
|
162
80
|
- !ruby/object:Gem::Version
|
163
|
-
version:
|
81
|
+
version: '2.3'
|
164
82
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
165
83
|
requirements:
|
166
84
|
- - ">="
|
167
85
|
- !ruby/object:Gem::Version
|
168
86
|
version: '0'
|
169
87
|
requirements: []
|
170
|
-
|
171
|
-
rubygems_version: 2.6.8
|
88
|
+
rubygems_version: 3.2.15
|
172
89
|
signing_key:
|
173
|
-
specification_version:
|
90
|
+
specification_version: 4
|
174
91
|
summary: Jekyll Github Deploy
|
175
92
|
test_files: []
|
data/.travis.yml
DELETED