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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ef13a922e2159f318c0e95218ba1fc6bd3da04a9971d4bcef2af3a56f166a67
4
- data.tar.gz: 75f832f123b5fc61f9788e907061eef1bedb32f5cf1f431467f01db39ecd8d27
3
+ metadata.gz: 591de30bc3c1bc1c2ebd9d04c63d8e115dcb743663594cb7ba0b4c0b37c059c9
4
+ data.tar.gz: 5da7eef3fa9c60566e132b97c07ac8b6e8a90d88617395e42d733675596878fa
5
5
  SHA512:
6
- metadata.gz: d8728de1ce83cfbf50c7c298843611ea27ae75f4d392b45049a9a2a22c7d84b79ae785f60d73c9bb316e91316bd7310bcf999ff39945d8b92e099411c3e01d6b
7
- data.tar.gz: ae23f2deee4a6967ab0211017b827a8bbc2b9cb26631dea7b197d8b435142e2c94cb2e0b33dfb68a6acf1fa284a3829b050e62fb4f6f08789c98eb918caf7166
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.7.2"
4
- gem "minima", "~> 2.0"
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.6"
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.2)
5
- public_suffix (>= 2.0.2, < 4.0)
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.5)
8
- em-websocket (0.5.1)
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.6.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.9.23)
21
+ ffi (1.15.5)
22
+ fiber-local (1.0.0)
13
23
  forwardable-extended (2.6.0)
14
- http_parser.rb (0.6.0)
15
- i18n (0.9.5)
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
- jekyll (3.7.3)
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 (~> 0.7)
40
+ i18n (>= 0.7, < 2)
22
41
  jekyll-sass-converter (~> 1.0)
23
42
  jekyll-watch (~> 2.0)
24
- kramdown (~> 1.14)
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.9.3)
31
- jekyll (~> 3.3)
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.5.0)
35
- jekyll (~> 3.3)
36
- jekyll-watch (2.0.0)
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 (1.16.2)
39
- liquid (4.0.0)
40
- listen (3.1.5)
41
- rb-fsevent (~> 0.9, >= 0.9.4)
42
- rb-inotify (~> 0.9, >= 0.9.7)
43
- ruby_dep (~> 1.2)
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
- minima (2.5.0)
46
- jekyll (~> 3.5)
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
- pathutil (0.16.1)
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 (3.0.2)
52
- rb-fsevent (0.10.3)
53
- rb-inotify (0.9.10)
54
- ffi (>= 0.5.0, < 2)
55
- rouge (3.1.1)
56
- ruby_dep (1.5.0)
57
- safe_yaml (1.0.4)
58
- sass (3.5.6)
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
- jekyll (~> 3.7.2)
69
- jekyll-feed (~> 0.6)
70
- minima (~> 2.0)
71
- tzinfo-data
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
@@ -7,6 +7,11 @@ all: build
7
7
  start:
8
8
  @bundle exec jekyll serve --verbose
9
9
 
10
+ .PHONY: test
11
+ test:
12
+ @bundle exec jekyll build
13
+ @bundle exec htmlproofer _site --disable-external
14
+
10
15
  .PHONY: build
11
16
  build: clean
12
17
  @gem build *.gemspec
data/README.md CHANGED
@@ -11,7 +11,7 @@ Add the plug-in to your Jekyll site Gemfile plug-in group:
11
11
  ```
12
12
  group :jekyll_plugins do
13
13
  ...
14
- gem "jekyll-github-plugin", "~> 1.0.0"
14
+ gem "jekyll-github-plugin", "~> 1.1.0"
15
15
  end
16
16
  ```
17
17
 
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
File without changes
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 = "http://github.com/#{@user}"
14
- @repoUrl = "http://github.com/#{@user}/#{@repository}"
13
+ @userUrl = "https://github.com/#{@user}"
14
+ @repoUrl = "https://github.com/#{@user}/#{@repository}"
15
15
  end
16
16
 
17
17
  def render(context)
@@ -1,3 +1,3 @@
1
1
  module JekyllGithubPlugin
2
- VERSION = "1.0.0".freeze
2
+ VERSION = "1.0.1".freeze
3
3
  end
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.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: 2018-05-25 00:00:00.000000000 Z
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
- rubyforge_project:
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.