jekyll-github-plugin 1.0.0 → 1.0.1
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/.editorconfig +0 -0
- data/.github/workflows/preintegration.yaml +18 -0
- data/.github/workflows/release.yaml +40 -0
- data/.gitignore +0 -0
- data/404.html +0 -0
- data/Gemfile +6 -6
- data/Gemfile.lock +71 -37
- data/LICENSE +0 -0
- data/Makefile +5 -0
- data/README.md +1 -1
- data/_config.yml +0 -0
- data/_includes/head.html +0 -0
- data/_plugins/jekyll-github-plugin.rb +0 -0
- data/_posts/2018-02-22-welcome-to-jekyll.markdown +0 -0
- data/about.md +0 -0
- data/assets/css/github-styles.css +0 -0
- data/assets/images/repo.png +0 -0
- data/assets/images/stats.png +0 -0
- data/assets/js/jquery.github.widget.js +0 -0
- data/index.md +0 -0
- data/jekyll-github-plugin.gemspec +0 -0
- data/lib/jekyll-github-plugin/tag.rb +2 -2
- data/lib/jekyll-github-plugin/version.rb +1 -1
- data/lib/jekyll-github-plugin.rb +0 -0
- data/media/capture.png +0 -0
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 591de30bc3c1bc1c2ebd9d04c63d8e115dcb743663594cb7ba0b4c0b37c059c9
|
4
|
+
data.tar.gz: 5da7eef3fa9c60566e132b97c07ac8b6e8a90d88617395e42d733675596878fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ce7bd4b9b656ce3cde1003fd825558dfa113f70d2b380f8026ac919f5c920ad278b8235a4d0eb5f1c1a75698061f0b3b1912e93befc64d1142829191f995179
|
7
|
+
data.tar.gz: 68b7f187f9855d08a84522809215bd19033bd35d71c85d0224bf198ba915da9ebf166690efa509170050cf6a7caac71f5b3ac0ea2112fc458166ff4fcddfaee9
|
data/.editorconfig
CHANGED
File without changes
|
@@ -0,0 +1,18 @@
|
|
1
|
+
name: preintegration
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches:
|
5
|
+
- '**'
|
6
|
+
jobs:
|
7
|
+
preintegration:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
steps:
|
10
|
+
- uses: actions/checkout@v3
|
11
|
+
with:
|
12
|
+
fetch-depth: 0
|
13
|
+
- uses: ruby/setup-ruby@v1
|
14
|
+
with:
|
15
|
+
ruby-version: '3.1.3'
|
16
|
+
bundler-cache: true
|
17
|
+
- name: Test & Build
|
18
|
+
run: make test build
|
@@ -0,0 +1,40 @@
|
|
1
|
+
name: release
|
2
|
+
on:
|
3
|
+
pull_request:
|
4
|
+
types: [ closed ]
|
5
|
+
push:
|
6
|
+
branches:
|
7
|
+
- 'master'
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
release:
|
11
|
+
if: github.event.pull_request.merged == true
|
12
|
+
runs-on: ubuntu-latest
|
13
|
+
env:
|
14
|
+
GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
|
15
|
+
steps:
|
16
|
+
- uses: actions/checkout@v3
|
17
|
+
with:
|
18
|
+
fetch-depth: 0
|
19
|
+
- uses: ruby/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
ruby-version: '3.1.3'
|
22
|
+
bundler-cache: true
|
23
|
+
- name: Test
|
24
|
+
run: make test
|
25
|
+
- name: Bump version
|
26
|
+
run: |
|
27
|
+
git config --local user.email "release@raycoarana.com"
|
28
|
+
git config --local user.name "Release Bot"
|
29
|
+
bundle exec bump patch --tag
|
30
|
+
echo "PUBLISHED_VERSION=$(bundle exec bump current)" >> $GITHUB_ENV
|
31
|
+
- name: Publish
|
32
|
+
run: make push
|
33
|
+
- name: Push new version
|
34
|
+
run: git push && git push --tags
|
35
|
+
- uses: ncipollo/release-action@v1
|
36
|
+
with:
|
37
|
+
tag: v${{ env.PUBLISHED_VERSION }}
|
38
|
+
generateReleaseNotes: true
|
39
|
+
makeLatest: true
|
40
|
+
artifacts: "*.gem"
|
data/.gitignore
CHANGED
File without changes
|
data/404.html
CHANGED
File without changes
|
data/Gemfile
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
|
3
|
-
gem "jekyll", "~> 3.
|
4
|
-
gem "minima", "~> 2.
|
3
|
+
gem "jekyll", "~> 3.9.3"
|
4
|
+
gem "minima", "~> 2.5.1"
|
5
|
+
gem "bump", "0.10.0"
|
6
|
+
gem "html-proofer", "5.0.2"
|
7
|
+
gem "kramdown-parser-gfm"
|
5
8
|
|
6
9
|
group :jekyll_plugins do
|
7
|
-
gem "jekyll-feed", "~> 0.
|
10
|
+
gem "jekyll-feed", "~> 0.17"
|
8
11
|
end
|
9
|
-
|
10
|
-
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
11
|
-
gem "wdm", "~> 0.1.0" if Gem.win_platform?
|
data/Gemfile.lock
CHANGED
@@ -1,74 +1,108 @@
|
|
1
1
|
GEM
|
2
2
|
remote: https://rubygems.org/
|
3
3
|
specs:
|
4
|
-
addressable (2.
|
5
|
-
public_suffix (>= 2.0.2, <
|
4
|
+
addressable (2.8.1)
|
5
|
+
public_suffix (>= 2.0.2, < 6.0)
|
6
|
+
async (2.3.1)
|
7
|
+
console (~> 1.10)
|
8
|
+
io-event (~> 1.1)
|
9
|
+
timers (~> 4.1)
|
10
|
+
bump (0.10.0)
|
6
11
|
colorator (1.1.0)
|
7
|
-
concurrent-ruby (1.0
|
8
|
-
|
12
|
+
concurrent-ruby (1.2.0)
|
13
|
+
console (1.16.2)
|
14
|
+
fiber-local
|
15
|
+
em-websocket (0.5.3)
|
9
16
|
eventmachine (>= 0.12.9)
|
10
|
-
http_parser.rb (~> 0
|
17
|
+
http_parser.rb (~> 0)
|
18
|
+
ethon (0.16.0)
|
19
|
+
ffi (>= 1.15.0)
|
11
20
|
eventmachine (1.2.7)
|
12
|
-
ffi (1.
|
21
|
+
ffi (1.15.5)
|
22
|
+
fiber-local (1.0.0)
|
13
23
|
forwardable-extended (2.6.0)
|
14
|
-
|
15
|
-
|
24
|
+
html-proofer (5.0.2)
|
25
|
+
addressable (~> 2.3)
|
26
|
+
async (~> 2.1)
|
27
|
+
nokogiri (~> 1.13)
|
28
|
+
rainbow (~> 3.0)
|
29
|
+
typhoeus (~> 1.3)
|
30
|
+
yell (~> 2.0)
|
31
|
+
zeitwerk (~> 2.5)
|
32
|
+
http_parser.rb (0.8.0)
|
33
|
+
i18n (1.12.0)
|
16
34
|
concurrent-ruby (~> 1.0)
|
17
|
-
|
35
|
+
io-event (1.1.6)
|
36
|
+
jekyll (3.9.3)
|
18
37
|
addressable (~> 2.4)
|
19
38
|
colorator (~> 1.0)
|
20
39
|
em-websocket (~> 0.5)
|
21
|
-
i18n (
|
40
|
+
i18n (>= 0.7, < 2)
|
22
41
|
jekyll-sass-converter (~> 1.0)
|
23
42
|
jekyll-watch (~> 2.0)
|
24
|
-
kramdown (
|
43
|
+
kramdown (>= 1.17, < 3)
|
25
44
|
liquid (~> 4.0)
|
26
45
|
mercenary (~> 0.3.3)
|
27
46
|
pathutil (~> 0.9)
|
28
47
|
rouge (>= 1.7, < 4)
|
29
48
|
safe_yaml (~> 1.0)
|
30
|
-
jekyll-feed (0.
|
31
|
-
jekyll (
|
49
|
+
jekyll-feed (0.17.0)
|
50
|
+
jekyll (>= 3.7, < 5.0)
|
32
51
|
jekyll-sass-converter (1.5.2)
|
33
52
|
sass (~> 3.4)
|
34
|
-
jekyll-seo-tag (2.
|
35
|
-
jekyll (
|
36
|
-
jekyll-watch (2.
|
53
|
+
jekyll-seo-tag (2.8.0)
|
54
|
+
jekyll (>= 3.8, < 5.0)
|
55
|
+
jekyll-watch (2.2.1)
|
37
56
|
listen (~> 3.0)
|
38
|
-
kramdown (
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
57
|
+
kramdown (2.4.0)
|
58
|
+
rexml
|
59
|
+
kramdown-parser-gfm (1.1.0)
|
60
|
+
kramdown (~> 2.0)
|
61
|
+
liquid (4.0.4)
|
62
|
+
listen (3.8.0)
|
63
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
64
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
44
65
|
mercenary (0.3.6)
|
45
|
-
|
46
|
-
|
66
|
+
mini_portile2 (2.8.1)
|
67
|
+
minima (2.5.1)
|
68
|
+
jekyll (>= 3.5, < 5.0)
|
47
69
|
jekyll-feed (~> 0.9)
|
48
70
|
jekyll-seo-tag (~> 2.1)
|
49
|
-
|
71
|
+
nokogiri (1.14.1)
|
72
|
+
mini_portile2 (~> 2.8.0)
|
73
|
+
racc (~> 1.4)
|
74
|
+
pathutil (0.16.2)
|
50
75
|
forwardable-extended (~> 2.6)
|
51
|
-
public_suffix (
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
76
|
+
public_suffix (5.0.1)
|
77
|
+
racc (1.6.2)
|
78
|
+
rainbow (3.1.1)
|
79
|
+
rb-fsevent (0.11.2)
|
80
|
+
rb-inotify (0.10.1)
|
81
|
+
ffi (~> 1.0)
|
82
|
+
rexml (3.2.5)
|
83
|
+
rouge (3.30.0)
|
84
|
+
safe_yaml (1.0.5)
|
85
|
+
sass (3.7.4)
|
59
86
|
sass-listen (~> 4.0.0)
|
60
87
|
sass-listen (4.0.0)
|
61
88
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
62
89
|
rb-inotify (~> 0.9, >= 0.9.7)
|
90
|
+
timers (4.3.5)
|
91
|
+
typhoeus (1.4.0)
|
92
|
+
ethon (>= 0.9.0)
|
93
|
+
yell (2.2.2)
|
94
|
+
zeitwerk (2.6.6)
|
63
95
|
|
64
96
|
PLATFORMS
|
65
97
|
ruby
|
66
98
|
|
67
99
|
DEPENDENCIES
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
100
|
+
bump (= 0.10.0)
|
101
|
+
html-proofer (= 5.0.2)
|
102
|
+
jekyll (~> 3.9.3)
|
103
|
+
jekyll-feed (~> 0.17)
|
104
|
+
kramdown-parser-gfm
|
105
|
+
minima (~> 2.5.1)
|
72
106
|
|
73
107
|
BUNDLED WITH
|
74
108
|
1.16.2
|
data/LICENSE
CHANGED
File without changes
|
data/Makefile
CHANGED
data/README.md
CHANGED
data/_config.yml
CHANGED
File without changes
|
data/_includes/head.html
CHANGED
File without changes
|
File without changes
|
File without changes
|
data/about.md
CHANGED
File without changes
|
File without changes
|
data/assets/images/repo.png
CHANGED
File without changes
|
data/assets/images/stats.png
CHANGED
File without changes
|
File without changes
|
data/index.md
CHANGED
File without changes
|
File without changes
|
@@ -10,8 +10,8 @@ module JekyllGithubPlugin
|
|
10
10
|
@repoParts = @repo.split("/")
|
11
11
|
@user = @repoParts[0]
|
12
12
|
@repository = @repoParts[1]
|
13
|
-
@userUrl = "
|
14
|
-
@repoUrl = "
|
13
|
+
@userUrl = "https://github.com/#{@user}"
|
14
|
+
@repoUrl = "https://github.com/#{@user}/#{@repository}"
|
15
15
|
end
|
16
16
|
|
17
17
|
def render(context)
|
data/lib/jekyll-github-plugin.rb
CHANGED
File without changes
|
data/media/capture.png
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-github-plugin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rayco Araña
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -74,6 +74,8 @@ extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
76
|
- ".editorconfig"
|
77
|
+
- ".github/workflows/preintegration.yaml"
|
78
|
+
- ".github/workflows/release.yaml"
|
77
79
|
- ".gitignore"
|
78
80
|
- 404.html
|
79
81
|
- Gemfile
|
@@ -115,8 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
117
|
- !ruby/object:Gem::Version
|
116
118
|
version: '0'
|
117
119
|
requirements: []
|
118
|
-
|
119
|
-
rubygems_version: 2.7.7
|
120
|
+
rubygems_version: 3.3.26
|
120
121
|
signing_key:
|
121
122
|
specification_version: 4
|
122
123
|
summary: Plug-in for jekyll to show a GitHub project in your pages.
|