spoom 1.0.5 → 1.0.6
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/lib/spoom/version.rb +1 -1
- data/templates/card.erb +8 -0
- data/templates/card_snapshot.erb +22 -0
- data/templates/page.erb +50 -0
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b9a6d7f3818e0af29439ba291b6c05fa29a821de374ee5c8181c64a05f3f7a3
|
|
4
|
+
data.tar.gz: 6d60e6fc252e6aebcfff2860778b1e2ac596740823a279aec1788ccaefa2fc4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d156b4d9c8f2edb2f68e1b5fc21b659d8bec0bc60fd9110f565889a620febce064cc3ee176228cd659f1b21ca0ab000a9790407537eb9bd18edbc41d601b963b
|
|
7
|
+
data.tar.gz: a7e1bf03e8bd942bc0f2ac6379739bfd795d1642025e00ef33e198b6422c61598b23c753248a698568b7c1edde23d232604b76ccdfd9d1b7ef98139c74cc583a
|
data/lib/spoom/version.rb
CHANGED
data/templates/card.erb
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<div class="card">
|
|
2
|
+
<% if title %>
|
|
3
|
+
<h5 class="card-header"><%= title %></h5>
|
|
4
|
+
<% end %>
|
|
5
|
+
<div class="card-body">
|
|
6
|
+
<div class="container-fluid">
|
|
7
|
+
<div class="row justify-content-md-center">
|
|
8
|
+
<div class="col-12 col-sm-4 col-xl-3">
|
|
9
|
+
<%= pie_sigils.html %>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="d-none d-xl-block col-xl-1"></div>
|
|
12
|
+
<div class="col-12 col-sm-4 col-xl-3">
|
|
13
|
+
<%= pie_calls.html %>
|
|
14
|
+
</div>
|
|
15
|
+
<div class="d-none d-xl-block col-xl-1"></div>
|
|
16
|
+
<div class="col-12 col-sm-4 col-xl-3">
|
|
17
|
+
<%= pie_sigs.html %>
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
data/templates/page.erb
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
|
+
|
|
8
|
+
<title><%= title %></title>
|
|
9
|
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
|
|
10
|
+
|
|
11
|
+
<style>
|
|
12
|
+
.card {
|
|
13
|
+
margin: 30px 0 0 0;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.footer {
|
|
17
|
+
color: #6c757d;
|
|
18
|
+
text-align: center;
|
|
19
|
+
margin: 30px 0 0 0;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
<%= header_style %>
|
|
23
|
+
</style>
|
|
24
|
+
</head>
|
|
25
|
+
<body>
|
|
26
|
+
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
|
27
|
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
|
|
28
|
+
<script src="https://d3js.org/d3.v4.min.js"></script>
|
|
29
|
+
|
|
30
|
+
<script>
|
|
31
|
+
<%= header_script %>
|
|
32
|
+
</script>
|
|
33
|
+
|
|
34
|
+
<div class="px-5 py-4 container-fluid">
|
|
35
|
+
<div class="row justify-content-center">
|
|
36
|
+
<div class="col-xs-12 col-md-12 col-lg-9 col-xl-8">
|
|
37
|
+
<div class="header">
|
|
38
|
+
<%= header_html %>
|
|
39
|
+
</div>
|
|
40
|
+
<div class="body">
|
|
41
|
+
<%= body_html %>
|
|
42
|
+
</div>
|
|
43
|
+
<div class="footer">
|
|
44
|
+
<%= footer_html %>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
</body>
|
|
50
|
+
</html>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spoom
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexandre Terrasa
|
|
@@ -152,6 +152,9 @@ files:
|
|
|
152
152
|
- lib/spoom/test_helpers/project.rb
|
|
153
153
|
- lib/spoom/timeline.rb
|
|
154
154
|
- lib/spoom/version.rb
|
|
155
|
+
- templates/card.erb
|
|
156
|
+
- templates/card_snapshot.erb
|
|
157
|
+
- templates/page.erb
|
|
155
158
|
homepage: https://github.com/Shopify/spoom
|
|
156
159
|
licenses:
|
|
157
160
|
- MIT
|