github-pages 203 → 204
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 +15 -8
- data/lib/github-pages/dependencies.rb +1 -1
- data/lib/github-pages/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75a6b39cd0dad047ee1e21305e163ce6ae435884499ab83d5d42c186c553f2a1
|
4
|
+
data.tar.gz: 2374fd0a5e6fc1ea3bac6dc29edc1347b255cf7bb5dc4cc21776c23323302990
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55bc36585e740e7fdc6ce95e4689dc5610bfe65d59531637a092ed1be9e963ecdaee1d832bec9ff24d2de9d7bf01d87ddc4da22e45f44a4fe248d0d1ba50bc16
|
7
|
+
data.tar.gz: a8f106809d6c49ecd9d3668d04b5a0df69476b5e3a5a83c662986fa68bbfb5d01e7117060de3399b3973c287b4ea55150399659ae7e14dfb9f3972af3e41c286
|
data/.rubocop.yml
CHANGED
@@ -15,6 +15,13 @@
|
|
15
15
|
#
|
16
16
|
# If you disable a check, document why.
|
17
17
|
|
18
|
+
inherit_gem:
|
19
|
+
rubocop-github:
|
20
|
+
- config/default.yml
|
21
|
+
|
22
|
+
require:
|
23
|
+
- rubocop-performance
|
24
|
+
|
18
25
|
AllCops:
|
19
26
|
TargetRubyVersion: 2.3
|
20
27
|
Exclude:
|
@@ -48,10 +55,10 @@ Style/HashSyntax:
|
|
48
55
|
EnforcedStyle: hash_rockets
|
49
56
|
Severity: error
|
50
57
|
|
51
|
-
Layout/
|
58
|
+
Layout/HashAlignment:
|
52
59
|
SupportedLastArgumentHashStyles: always_ignore
|
53
60
|
|
54
|
-
Layout/
|
61
|
+
Layout/ParameterAlignment:
|
55
62
|
Enabled: false # This is usually true, but we often want to roll back to
|
56
63
|
# the start of a line.
|
57
64
|
|
@@ -78,7 +85,7 @@ Metrics/BlockLength:
|
|
78
85
|
- github-pages.gemspec
|
79
86
|
- !ruby/regexp /spec\/.*.rb/
|
80
87
|
|
81
|
-
|
88
|
+
Layout/LineLength:
|
82
89
|
Max: 90
|
83
90
|
Severity: warning
|
84
91
|
Exclude:
|
@@ -122,9 +129,6 @@ Metrics/ParameterLists:
|
|
122
129
|
Metrics/AbcSize:
|
123
130
|
Max: 20
|
124
131
|
|
125
|
-
Layout/IndentFirstHashElement:
|
126
|
-
EnforcedStyle: consistent
|
127
|
-
|
128
132
|
Style/SignalException:
|
129
133
|
EnforcedStyle: only_raise
|
130
134
|
|
@@ -134,10 +138,13 @@ Layout/MultilineMethodCallIndentation:
|
|
134
138
|
Layout/MultilineOperationIndentation:
|
135
139
|
EnforcedStyle: indented
|
136
140
|
|
137
|
-
Layout/
|
141
|
+
Layout/FirstArgumentIndentation:
|
142
|
+
EnforcedStyle: consistent
|
143
|
+
|
144
|
+
Layout/FirstHashElementIndentation:
|
138
145
|
EnforcedStyle: consistent
|
139
146
|
|
140
|
-
Layout/
|
147
|
+
Layout/FirstArrayElementIndentation:
|
141
148
|
EnforcedStyle: consistent
|
142
149
|
|
143
150
|
Layout/ExtraSpacing:
|
@@ -27,7 +27,7 @@ module GitHubPages
|
|
27
27
|
"jekyll-paginate" => "1.1.0",
|
28
28
|
"jekyll-coffeescript" => "1.1.1",
|
29
29
|
"jekyll-seo-tag" => "2.6.1",
|
30
|
-
"jekyll-github-metadata" => "2.
|
30
|
+
"jekyll-github-metadata" => "2.13.0",
|
31
31
|
"jekyll-avatar" => "0.7.0",
|
32
32
|
"jekyll-remote-theme" => "0.4.1",
|
33
33
|
|
data/lib/github-pages/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github-pages
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '
|
4
|
+
version: '204'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GitHub, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -212,14 +212,14 @@ dependencies:
|
|
212
212
|
requirements:
|
213
213
|
- - '='
|
214
214
|
- !ruby/object:Gem::Version
|
215
|
-
version: 2.
|
215
|
+
version: 2.13.0
|
216
216
|
type: :runtime
|
217
217
|
prerelease: false
|
218
218
|
version_requirements: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
220
|
- - '='
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version: 2.
|
222
|
+
version: 2.13.0
|
223
223
|
- !ruby/object:Gem::Dependency
|
224
224
|
name: jekyll-avatar
|
225
225
|
requirement: !ruby/object:Gem::Requirement
|
@@ -647,19 +647,19 @@ dependencies:
|
|
647
647
|
- !ruby/object:Gem::Version
|
648
648
|
version: '3.3'
|
649
649
|
- !ruby/object:Gem::Dependency
|
650
|
-
name: rubocop
|
650
|
+
name: rubocop-github
|
651
651
|
requirement: !ruby/object:Gem::Requirement
|
652
652
|
requirements:
|
653
|
-
- -
|
653
|
+
- - '='
|
654
654
|
- !ruby/object:Gem::Version
|
655
|
-
version:
|
655
|
+
version: 0.14.0
|
656
656
|
type: :development
|
657
657
|
prerelease: false
|
658
658
|
version_requirements: !ruby/object:Gem::Requirement
|
659
659
|
requirements:
|
660
|
-
- -
|
660
|
+
- - '='
|
661
661
|
- !ruby/object:Gem::Version
|
662
|
-
version:
|
662
|
+
version: 0.14.0
|
663
663
|
description: Bootstrap the GitHub Pages Jekyll environment locally.
|
664
664
|
email: support@github.com
|
665
665
|
executables:
|