aldy_debug_kit_sqlite3 0.1.2 → 0.1.3
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/aldy_debug_kit_sqlite3.rb +4 -4
- data/lib/aldy_debug_kit_sqlite3/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee766b54d71f15bed1ecc1679ef0abb107823b630b2c215da6b61ebd579864a8
|
|
4
|
+
data.tar.gz: 2f8b97faa0e2ca419814c96190dcec491f05490d5b3deea1bac11565e4e3279e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcac49c2d33b7c2808483c4f36909367de80c5f26915f22632c9fad05e9eb9a29a81050f0504a4a46fe5f53e3403bc4ab920b798a344f469b0212921d9b837c2
|
|
7
|
+
data.tar.gz: 693fb160f88768196a6be428a8b39ca8b4e8982189cc9c29f66242ffab688f4c4fa54836527bb5b8e9d7d5d50e9273afc76e2db069fc2451a10c1f593ba5ffdc
|
|
@@ -28,7 +28,7 @@ module AldyDebugKitSqlite3
|
|
|
28
28
|
<html>
|
|
29
29
|
<head>
|
|
30
30
|
<meta charset="utf-8" />
|
|
31
|
-
<title>
|
|
31
|
+
<title>Show Tables</title>
|
|
32
32
|
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
|
|
33
33
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
|
34
34
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
@@ -44,13 +44,13 @@ module AldyDebugKitSqlite3
|
|
|
44
44
|
<% @models.each do |model| %>
|
|
45
45
|
<div class="page-header">
|
|
46
46
|
<h1>
|
|
47
|
-
<%= model[
|
|
48
|
-
<a class="btn btn-primary" data-toggle="collapse" href="#collapseExample_<%= model[
|
|
47
|
+
<%= model[:table_name] %>
|
|
48
|
+
<a class="btn btn-primary" data-toggle="collapse" href="#collapseExample_<%= model[:model_name] %>" role="button" aria-expanded="false" aria-controls="collapseExample">
|
|
49
49
|
Show/Hedden
|
|
50
50
|
</a>
|
|
51
51
|
</h1>
|
|
52
52
|
</div>
|
|
53
|
-
<div class="collapse" id="collapseExample_<%= model[
|
|
53
|
+
<div class="collapse" id="collapseExample_<%= model[:model_name] %>">
|
|
54
54
|
<table class="table table-bordered table-striped table-sm">
|
|
55
55
|
<thead class="thead-dark">
|
|
56
56
|
<tr>
|