jgd 1.11 → 1.12
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/ISSUE_TEMPLATE.md +12 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +11 -0
- data/.rubocop.yml +2 -1
- data/.rultor.yml +13 -8
- data/.travis.yml +2 -2
- data/Gemfile +22 -0
- data/README.md +18 -20
- data/Rakefile +4 -24
- data/bin/jgd +21 -0
- data/jgd.gemspec +30 -11
- data/logo.svg +19 -0
- metadata +19 -60
- 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: c5902bbefde78ee45798968dcd0659193058eeea72a3868474d1b1e9c78b9d8e
|
4
|
+
data.tar.gz: f866d9c45b76db47b6c4dfbac618951974a57c4b971589f42cb66c798f3a203d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87e04304f47451e86a2e4039e49698f059ac51594d501e9e9b734457e1b74b2b5a395fe2558760be8e6f480f98f5dabf9470d5e3821a0f37ceca9fead5a3a267
|
7
|
+
data.tar.gz: 67958d840384a91111b0b1ee7eb85904011becf5b49b1909aa232e2338ee5b0f7a54bae8bb330534b1563c5dc81a4712255193a2a00a65357f21ce3e88cdb612
|
data/.0pdd.yml
CHANGED
@@ -0,0 +1,12 @@
|
|
1
|
+
Make sure the title of the issue explains the problem you are having. Also, the description of the issue must clearly explain what is broken, not what you want us to implement. Go through this checklist and make sure you answer "YES" to all points:
|
2
|
+
|
3
|
+
- You have all pre-requisites listed in README.md installed
|
4
|
+
- You are sure that you are not reporting a duplicate (search all issues)
|
5
|
+
- You say "is broken" or "doesn't work" in the title
|
6
|
+
- You tell us what you are trying to do
|
7
|
+
- You explain the results you are getting
|
8
|
+
- You suggest an alternative result you would like to see
|
9
|
+
|
10
|
+
This article will help you understand what we are looking for: http://www.yegor256.com/2014/11/24/principles-of-bug-tracking.html
|
11
|
+
|
12
|
+
Thank you for your contribution!
|
@@ -0,0 +1,11 @@
|
|
1
|
+
Many thanks for your contribution, we truly appreciate it. We will appreciate it even more, if you make sure that you can say "YES" to each point in this short checklist:
|
2
|
+
|
3
|
+
- You made a small amount of changes (less than 100 lines, less than 10 files)
|
4
|
+
- You made changes related to only one bug (create separate PRs for separate problems)
|
5
|
+
- You are ready to defend your changes (there will be a code review)
|
6
|
+
- You don't touch what you don't understand
|
7
|
+
- You ran the build locally and it passed
|
8
|
+
|
9
|
+
This article will help you understand what we are looking for: http://www.yegor256.com/2015/02/09/serious-code-reviewer.html
|
10
|
+
|
11
|
+
Thank you for your contribution!
|
data/.rubocop.yml
CHANGED
@@ -3,6 +3,7 @@ AllCops:
|
|
3
3
|
- 'bin/**/*'
|
4
4
|
- 'assets/**/*'
|
5
5
|
DisplayCopNames: true
|
6
|
+
TargetRubyVersion: 2.3
|
6
7
|
|
7
8
|
Lint/RescueException:
|
8
9
|
Enabled: false
|
@@ -14,5 +15,5 @@ Metrics/AbcSize:
|
|
14
15
|
Max: 60
|
15
16
|
Metrics/BlockLength:
|
16
17
|
Max: 50
|
17
|
-
|
18
|
+
Layout/MultilineMethodCallIndentation:
|
18
19
|
Enabled: false
|
data/.rultor.yml
CHANGED
@@ -1,22 +1,27 @@
|
|
1
|
+
readers:
|
2
|
+
- "urn:github:526301"
|
1
3
|
decrypt:
|
2
4
|
rubygems.yml: repo/rubygems.yml.asc
|
3
5
|
install: |-
|
4
6
|
git config --global user.email "test@example.com"
|
5
7
|
git config --global user.name "Test"
|
8
|
+
export GEM_HOME=~/.ruby
|
9
|
+
export GEM_PATH=$GEM_HOME:$GEM_PATH
|
10
|
+
bundle install
|
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
|
24
|
+
deploy:
|
25
|
+
script: |-
|
26
|
+
echo 'There is nothing to deploy'
|
27
|
+
exit -1
|
data/.travis.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
language: ruby
|
2
2
|
rvm:
|
3
|
-
- 2.
|
3
|
+
- 2.6.0
|
4
4
|
branches:
|
5
5
|
only:
|
6
6
|
- master
|
@@ -10,6 +10,6 @@ script:
|
|
10
10
|
- set -e
|
11
11
|
- git config --global user.email "test@example.com"
|
12
12
|
- git config --global user.name "Test"
|
13
|
-
- rake
|
13
|
+
- bundle exec rake
|
14
14
|
- ./test.sh
|
15
15
|
|
data/Gemfile
CHANGED
@@ -1,2 +1,24 @@
|
|
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
|
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
|
[![Build Status](https://travis-ci.org/yegor256/jekyll-github-deploy.svg)](https://travis-ci.org/yegor256/jekyll-github-deploy)
|
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
|
@@ -103,10 +100,11 @@ script:
|
|
103
100
|
|
104
101
|
Read also [this article](http://www.yegor256.com/2014/06/24/jekyll-github-deploy.html).
|
105
102
|
|
106
|
-
|
103
|
+
## Building locally
|
104
|
+
|
107
105
|
In order to build a package locally run below commands.
|
108
106
|
|
109
107
|
```bash
|
110
108
|
gem build jgd.gemspec
|
111
109
|
gem install jgd-<version>.gem
|
112
|
-
```
|
110
|
+
```
|
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,50 @@
|
|
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
26
|
s.specification_version = 2 if s.respond_to? :specification_version=
|
5
27
|
if s.respond_to? :required_rubygems_version=
|
6
28
|
s.required_rubygems_version = Gem::Requirement.new('>= 0')
|
7
29
|
end
|
8
30
|
s.rubygems_version = '2.2.2'
|
9
|
-
s.required_ruby_version = '>=
|
31
|
+
s.required_ruby_version = '>= 2.3'
|
10
32
|
s.name = 'jgd'
|
11
|
-
s.version = '1.
|
33
|
+
s.version = '1.12'
|
12
34
|
s.license = 'MIT'
|
13
35
|
s.summary = 'Jekyll Github Deploy'
|
14
36
|
s.description = 'Automated deployment of your Jekyll blog to Github Pages'
|
15
37
|
s.authors = ['Yegor Bugayenko']
|
16
|
-
s.email = '
|
38
|
+
s.email = 'yegor256@gmail.com'
|
17
39
|
s.homepage = 'http://github.com/yegor256/jekyll-github-deploy'
|
18
40
|
s.files = `git ls-files`.split($RS)
|
19
41
|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
20
42
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
21
43
|
s.rdoc_options = ['--charset=UTF-8']
|
22
44
|
s.extra_rdoc_files = ['README.md', 'LICENSE.txt']
|
23
|
-
s.add_runtime_dependency('trollop', '2.1.2')
|
24
45
|
s.add_runtime_dependency('jekyll', '>=1.5.1')
|
25
|
-
s.
|
26
|
-
s.add_development_dependency '
|
27
|
-
s.add_development_dependency '
|
28
|
-
s.add_development_dependency 'rubocop', '
|
29
|
-
s.add_development_dependency 'rubocop-rspec', '1.8.0'
|
30
|
-
s.add_development_dependency 'rspec-rails', '2.13'
|
46
|
+
s.add_runtime_dependency('trollop', '2.9.9')
|
47
|
+
s.add_development_dependency 'rake', '12.3.1'
|
48
|
+
s.add_development_dependency 'rubocop', '0.62.0'
|
49
|
+
s.add_development_dependency 'rubocop-rspec', '1.31.0'
|
31
50
|
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>
|
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: '1.
|
4
|
+
version: '1.12'
|
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: 2019-06-21 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,63 @@ 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
|
28
|
+
name: trollop
|
57
29
|
requirement: !ruby/object:Gem::Requirement
|
58
30
|
requirements:
|
59
31
|
- - '='
|
60
32
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
62
|
-
type: :
|
33
|
+
version: 2.9.9
|
34
|
+
type: :runtime
|
63
35
|
prerelease: false
|
64
36
|
version_requirements: !ruby/object:Gem::Requirement
|
65
37
|
requirements:
|
66
38
|
- - '='
|
67
39
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
40
|
+
version: 2.9.9
|
69
41
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
42
|
+
name: rake
|
71
43
|
requirement: !ruby/object:Gem::Requirement
|
72
44
|
requirements:
|
73
45
|
- - '='
|
74
46
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
47
|
+
version: 12.3.1
|
76
48
|
type: :development
|
77
49
|
prerelease: false
|
78
50
|
version_requirements: !ruby/object:Gem::Requirement
|
79
51
|
requirements:
|
80
52
|
- - '='
|
81
53
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
54
|
+
version: 12.3.1
|
83
55
|
- !ruby/object:Gem::Dependency
|
84
56
|
name: rubocop
|
85
57
|
requirement: !ruby/object:Gem::Requirement
|
86
58
|
requirements:
|
87
59
|
- - '='
|
88
60
|
- !ruby/object:Gem::Version
|
89
|
-
version: 0.
|
61
|
+
version: 0.62.0
|
90
62
|
type: :development
|
91
63
|
prerelease: false
|
92
64
|
version_requirements: !ruby/object:Gem::Requirement
|
93
65
|
requirements:
|
94
66
|
- - '='
|
95
67
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.
|
68
|
+
version: 0.62.0
|
97
69
|
- !ruby/object:Gem::Dependency
|
98
70
|
name: rubocop-rspec
|
99
71
|
requirement: !ruby/object:Gem::Requirement
|
100
72
|
requirements:
|
101
73
|
- - '='
|
102
74
|
- !ruby/object:Gem::Version
|
103
|
-
version: 1.
|
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
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - '='
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '2.13'
|
75
|
+
version: 1.31.0
|
118
76
|
type: :development
|
119
77
|
prerelease: false
|
120
78
|
version_requirements: !ruby/object:Gem::Requirement
|
121
79
|
requirements:
|
122
80
|
- - '='
|
123
81
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
82
|
+
version: 1.31.0
|
125
83
|
description: Automated deployment of your Jekyll blog to Github Pages
|
126
|
-
email:
|
84
|
+
email: yegor256@gmail.com
|
127
85
|
executables:
|
128
86
|
- jgd
|
129
87
|
extensions: []
|
@@ -132,6 +90,8 @@ extra_rdoc_files:
|
|
132
90
|
- LICENSE.txt
|
133
91
|
files:
|
134
92
|
- ".0pdd.yml"
|
93
|
+
- ".github/ISSUE_TEMPLATE.md"
|
94
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
135
95
|
- ".gitignore"
|
136
96
|
- ".pdd"
|
137
97
|
- ".rubocop.yml"
|
@@ -141,10 +101,10 @@ files:
|
|
141
101
|
- LICENSE.txt
|
142
102
|
- README.md
|
143
103
|
- Rakefile
|
144
|
-
- TEAM.md
|
145
104
|
- bash/deploy.sh
|
146
105
|
- bin/jgd
|
147
106
|
- jgd.gemspec
|
107
|
+
- logo.svg
|
148
108
|
- rubygems.yml.asc
|
149
109
|
- test.sh
|
150
110
|
homepage: http://github.com/yegor256/jekyll-github-deploy
|
@@ -160,15 +120,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
120
|
requirements:
|
161
121
|
- - ">="
|
162
122
|
- !ruby/object:Gem::Version
|
163
|
-
version:
|
123
|
+
version: '2.3'
|
164
124
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
165
125
|
requirements:
|
166
126
|
- - ">="
|
167
127
|
- !ruby/object:Gem::Version
|
168
128
|
version: '0'
|
169
129
|
requirements: []
|
170
|
-
|
171
|
-
rubygems_version: 2.6.8
|
130
|
+
rubygems_version: 3.0.1
|
172
131
|
signing_key:
|
173
132
|
specification_version: 2
|
174
133
|
summary: Jekyll Github Deploy
|