explicit 0.2.10 → 0.2.12
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 954701c8ac0b7cd387f9dd6129739a59c624390c56c73baa507340aca73093de
|
4
|
+
data.tar.gz: 5372f09b33652971b8df685721d7c8a93782054ac8bc0a91a67b1c3cbf1bbf47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47e20235b39777a2c42a192ca6e1a060d336b94808afdb825204e947bc511bda25cc2c8e58a3c830f768c245d8b760d159829f525adaff01e22e6c758db57e42
|
7
|
+
data.tar.gz: 0d65d5a475676aa645bd757fbc38f05ea97ab64476cf113f31e28a375f2494f45dd4ddf1391cd84f3d4cffbb96e054f3e620bc6a7569558ff2fa1ac92364dc27
|
@@ -3,6 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<title><%= page_title || "API Documentation" %></title>
|
5
5
|
<meta charset="UTF-8">
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6
7
|
|
7
8
|
<% if favicon_url %>
|
8
9
|
<link rel="icon" href="<%= favicon_url %>" />
|
@@ -18,6 +19,10 @@
|
|
18
19
|
background: var(--color-neutral-100);
|
19
20
|
color: var(--color-neutral-900);
|
20
21
|
}
|
22
|
+
.markdown p {
|
23
|
+
margin-block-start: 0.5rem;
|
24
|
+
margin-block-end: 0.5rem;
|
25
|
+
}
|
21
26
|
.markdown p:first-of-type {
|
22
27
|
margin-block-start: 0em;
|
23
28
|
}
|
@@ -80,6 +85,8 @@
|
|
80
85
|
|
81
86
|
<main class="relative grow h-screen overflow-auto">
|
82
87
|
<% sections.each do |section| %>
|
88
|
+
<h1 class="text-5xl font-bold p-8 bg-gray-50 border-t"><%= section.name %></h1>
|
89
|
+
|
83
90
|
<% section.pages.each do |page| %>
|
84
91
|
<div class="p-8 border-t">
|
85
92
|
<%= render partial: page.partial, locals: { page: } %>
|
@@ -0,0 +1 @@
|
|
1
|
+
Any value
|
data/lib/explicit/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: explicit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luiz Vasconcellos
|
@@ -56,6 +56,7 @@ files:
|
|
56
56
|
- app/views/explicit/documentation/_request.html.erb
|
57
57
|
- app/views/explicit/documentation/request/_examples.html.erb
|
58
58
|
- app/views/explicit/documentation/type/_agreement.html.erb
|
59
|
+
- app/views/explicit/documentation/type/_any.html.erb
|
59
60
|
- app/views/explicit/documentation/type/_array.html.erb
|
60
61
|
- app/views/explicit/documentation/type/_big_decimal.html.erb
|
61
62
|
- app/views/explicit/documentation/type/_boolean.html.erb
|