spoom 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a5f19185a1beba98f75c9c96b08c06400c9917c0d85734f1dbf9c9d77e3fa74
4
- data.tar.gz: 53f4b8b10f81b19588f58d57c93349721230836e3b98524b52c46a78f4682365
3
+ metadata.gz: 8b9a6d7f3818e0af29439ba291b6c05fa29a821de374ee5c8181c64a05f3f7a3
4
+ data.tar.gz: 6d60e6fc252e6aebcfff2860778b1e2ac596740823a279aec1788ccaefa2fc4b
5
5
  SHA512:
6
- metadata.gz: aff5a2bc4b3bd01c815ad0d00e76fcc700728ec659135645dce259db72dc97cf8ea2d339827d979bf9f225637b7d23f2ea09d13dd02786229fe5c42caf88886e
7
- data.tar.gz: b2760f8f58a7f3cbfd90d59e16f5bb9b76356f13fc3f38a606758652f53caf72004024128e4195451ca32f30c9d03c6bdb553a6a7aea2893c7f0e6a2e6ec2528
6
+ metadata.gz: d156b4d9c8f2edb2f68e1b5fc21b659d8bec0bc60fd9110f565889a620febce064cc3ee176228cd659f1b21ca0ab000a9790407537eb9bd18edbc41d601b963b
7
+ data.tar.gz: a7e1bf03e8bd942bc0f2ac6379739bfd795d1642025e00ef33e198b6422c61598b23c753248a698568b7c1edde23d232604b76ccdfd9d1b7ef98139c74cc583a
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Spoom
5
- VERSION = "1.0.5"
5
+ VERSION = "1.0.6"
6
6
  end
@@ -0,0 +1,8 @@
1
+ <div class="card">
2
+ <% if title %>
3
+ <h5 class="card-header"><%= title %></h5>
4
+ <% end %>
5
+ <div class="card-body">
6
+ <%= body %>
7
+ </div>
8
+ </div>
@@ -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>
@@ -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.5
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