jekyll-theme-open-project-helpers 2.0.6 → 2.0.7
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7ee2d1219461cd04d2fd2dbf16fe268531bdbf7
|
|
4
|
+
data.tar.gz: 23886876850da8c1e1a309858b04961a6026601e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68aec3ffa2e50475be2094b5752b03b6df4a4cbb9775083cb033db7d474659b3c796006102481fa611b24a1623985fc0f9416188562172fa195ba09573ebaa40
|
|
7
|
+
data.tar.gz: fc953cd80577ddab9693305a93242a71d09ee38a3a320bbd0107761dfd741043c4bfa7c00ca2447bd7d87a075bff0df782d99bfcc8dfdaf2b91cf182c4656b1f
|
|
@@ -35,7 +35,7 @@ module Jekyll
|
|
|
35
35
|
|
|
36
36
|
elsif nested or (File.basename(entry, '.*') != 'index')
|
|
37
37
|
ext = File.extname(path)
|
|
38
|
-
if ['.adoc', '.md', '.markdown'
|
|
38
|
+
if ['.adoc', '.md', '.markdown'].include? ext
|
|
39
39
|
doc = NonLiquidDocument.new(path, :site => @site, :collection => collection)
|
|
40
40
|
doc.read
|
|
41
41
|
collection.docs << doc
|
|
@@ -179,7 +179,6 @@ module Jekyll
|
|
|
179
179
|
entry_points = @site.collections[collection_name].docs.select do |doc|
|
|
180
180
|
doc.data['repo_url']
|
|
181
181
|
end
|
|
182
|
-
p entry_points
|
|
183
182
|
|
|
184
183
|
entry_points.each do |index_doc|
|
|
185
184
|
item_name = index_doc.id.split('/')[-1]
|
|
@@ -222,7 +221,6 @@ module Jekyll
|
|
|
222
221
|
# and boolean signifying whether new repo has been initialized
|
|
223
222
|
# in the process of pulling the data.
|
|
224
223
|
|
|
225
|
-
p repo_path
|
|
226
224
|
newly_initialized = false
|
|
227
225
|
repo = nil
|
|
228
226
|
|