jekyll-report-dashboard 1.0.3 → 2.0.0
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/_includes/playwright-branch-list.html +1 -1
- data/_layouts/playwright-branch.html +1 -1
- data/index.markdown +3 -3
- data/playwright-reports.markdown +2 -2
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2794922ae6b14f9416c74977a11a6fcac8f5e229293c1f99ea9fe1c0e9a46a10
|
4
|
+
data.tar.gz: cb5dd91142264608d0645846a2bf5a3a1d75f5ec3cf314bea545af3b54bcd36a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81de7cece942b785ab55e15896f5e49a1b991693c7108e584b4749589000dde9b181fef19f7a273185bd080b9302fd214303ca9d1561c802ec51389260544643
|
7
|
+
data.tar.gz: 322196e694c4f571e7acea6b9a0105dc3c409364770dc977e9256a8bdef221c2da266fc20591c53f86c7cc4a8cd57ed92047a014ca1bd298b0546131acec8b34
|
@@ -20,7 +20,7 @@
|
|
20
20
|
{% assign latest_run_id = runs | reverse | first %}
|
21
21
|
{% assign data = site.data.playwright-reports.branches[branch_name][latest_run_id] %}
|
22
22
|
<!-- capture creates a link to the actual report file-->
|
23
|
-
{% capture report_link %}/playwright-reports/branches/{{branch_name}}/{{latest_run_id}}.html{% endcapture %}
|
23
|
+
{% capture report_link %}/playwright-reports/branches/{{branch_name}}/{{latest_run_id}}/index.html{% endcapture %}
|
24
24
|
<!--
|
25
25
|
Include the html snippet in `_includes/playwright-summary.html` with the parameters the `branch_name` variable as `branch`,
|
26
26
|
the `latest_run_id` variable as `run_id`, the `data` variable as `data`, and the `report_link` variable as `url`.
|
@@ -13,7 +13,7 @@ layout: page
|
|
13
13
|
<!-- loop through the run ids -->
|
14
14
|
{% assign data = site.data.playwright-reports.branches[page.branch][run_id] %}
|
15
15
|
<!-- capture creates a link using the page.branch variable and the run id -->
|
16
|
-
{% capture report_link %}/playwright-reports/branches/{{page.branch}}/{{run_id}}.html{% endcapture %}
|
16
|
+
{% capture report_link %}/playwright-reports/branches/{{page.branch}}/{{run_id}}/index.html{% endcapture %}
|
17
17
|
<!--
|
18
18
|
Include the html snippet in `_includes/playwright-summary.html` with the parameters the `page.branch` variable as `branch`,
|
19
19
|
the `run_id` variable as `run_id`, the `data` variable as `data`, and the `report_link` variable as `url`.
|
data/index.markdown
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
layout: home
|
3
3
|
---
|
4
4
|
|
5
|
-
<div class="xl:max-w-[68rem] 2xl:max-w-[80rem] md:grid md:grid-cols-5 md:gap-
|
5
|
+
<div class="xl:max-w-[68rem] 2xl:max-w-[80rem] md:grid md:grid-cols-5 md:gap-8 md:items-start md:justify-center">
|
6
6
|
<div class="md:col-start-1 md:col-span-3">
|
7
7
|
<div class="">
|
8
8
|
<h2 class="md:mt-0">Main</h2>
|
@@ -28,9 +28,9 @@ layout: home
|
|
28
28
|
<!-- Jekyll uses Liquid filters to provide helper functions. https://jekyllrb.com/docs/liquid/filters/ -->
|
29
29
|
<!--
|
30
30
|
Include the html snippet in `_includes/playwright-summary.html` with the parameters "main" as `branch`,
|
31
|
-
the data variable as `data`, and "/playwright-reports/main.html" as `url`.
|
31
|
+
the data variable as `data`, and "/playwright-reports/main/index.html" as `url`.
|
32
32
|
-->
|
33
|
-
{% include playwright-summary.html branch="main" data=data url="/playwright-reports/main.html" %}
|
33
|
+
{% include playwright-summary.html branch="main" data=data url="/playwright-reports/main/index.html" %}
|
34
34
|
</div>
|
35
35
|
|
36
36
|
<div class="">
|
data/playwright-reports.markdown
CHANGED
@@ -13,9 +13,9 @@ permalink: playwright-reports/
|
|
13
13
|
{% assign data = site.data.playwright-reports.main %}
|
14
14
|
<!--
|
15
15
|
Include the html snippet in `_includes/playwright-summary.html` with the parameters "main" as `branch`,
|
16
|
-
the data variable as `data`, and "/playwright-reports/main.html" as `url`.
|
16
|
+
the data variable as `data`, and "/playwright-reports/main/index.html" as `url`.
|
17
17
|
-->
|
18
|
-
{% include playwright-summary.html branch="main" data=data url="/playwright-reports/main.html" %}
|
18
|
+
{% include playwright-summary.html branch="main" data=data url="/playwright-reports/main/index.html" %}
|
19
19
|
|
20
20
|
<div class="mt-8">
|
21
21
|
<h2>Latest Reports from Branches
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-report-dashboard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tiffany Forkner
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: jekyll
|
@@ -37,6 +37,20 @@ dependencies:
|
|
37
37
|
- - ">="
|
38
38
|
- !ruby/object:Gem::Version
|
39
39
|
version: '0'
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: jekyll-webp
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
type: :runtime
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
40
54
|
- !ruby/object:Gem::Dependency
|
41
55
|
name: bundler
|
42
56
|
requirement: !ruby/object:Gem::Requirement
|
@@ -100,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
114
|
- !ruby/object:Gem::Version
|
101
115
|
version: '0'
|
102
116
|
requirements: []
|
103
|
-
rubygems_version: 3.6.
|
117
|
+
rubygems_version: 3.6.8
|
104
118
|
specification_version: 4
|
105
119
|
summary: Jekyll theme for displaying software project reports (e.g. Playwright reports,
|
106
120
|
code coverage reports, GitHub release notes)
|