fni-docs-theme 0.6.2 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ef0f1a17950b15ec68df995ce34554e7735129cd973fda8eff12d304ab334510
4
- data.tar.gz: f8b98febd81c481ae84590dc1891f9540d15d4182f0c8a58805acc5571522fdc
3
+ metadata.gz: 52ad30bc234f2c88e25cbf28ecfed428e59592fb5eb72032f2177f3c0a2b3a75
4
+ data.tar.gz: 4b06e9324cd90e9036f58dffbb301f6d20ca1939e68327aabcf9d348d76110b1
5
5
  SHA512:
6
- metadata.gz: 615ed2a27fbe9bdf3ed940d3f5e01e60b394ed8714062808a24d6529ac6ba5a48ae553368262066056bc0e17c652a2673556f0913089cadf5340f4e71b168b7e
7
- data.tar.gz: 0cebb94ecbfc2fe9ebbb4f330082a40fb11c046d378d52ac75034c30d551c82e67f28fa23bdccb94b71318c8f400343a239082a9b5618ad7a69fcaaf903ceb05
6
+ metadata.gz: 999b02316e61eff711b6dcddd718e72bdddef140fe9b07ad6ef29f7a8e80525a709635959b9e18b597a95a440bd305a091b26c8ff6e19a81b1f6c8590700ef91
7
+ data.tar.gz: 2ee1ac77ba641acd33d2faca54be3585d9daeace984e8234c444536433bf3d6a8f04026193ddb7a55002f4580e6ec1fc1e9aa4ccdb083057e7c1b5e41a6e8542
@@ -38,6 +38,12 @@ layout: table_wrappers
38
38
  <path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline>
39
39
  </svg>
40
40
  </symbol>
41
+ <symbol id="svg-close" viewBox="0 0 24 24">
42
+ <title>Close</title>
43
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x">
44
+ <line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line>
45
+ </svg>
46
+ </symbol>
41
47
  </svg>
42
48
 
43
49
  <div class="side-bar">
@@ -46,6 +52,9 @@ layout: table_wrappers
46
52
  <a href="#" id="menu-button" class="site-button">
47
53
  <svg viewBox="0 0 24 24" class="icon"><use xlink:href="#svg-menu"></use></svg>
48
54
  </a>
55
+ <a href="#" id="close-button" class="site-button close-button">
56
+ <svg viewBox="0 0 24 24" class="icon"><use xlink:href="#svg-close"></use></svg>
57
+ </a>
49
58
  </div>
50
59
  <nav role="navigation" aria-label="Main" id="site-nav" class="site-nav" data-page-url="{{ page.url }}" data-page-parent="{{ page.parent }}" data-page-grand-parent="{{ page.grand_parent }}">
51
60
  {% if site.just_the_docs.collections %}
data/_sass/content.scss CHANGED
@@ -19,9 +19,17 @@
19
19
  }
20
20
 
21
21
  a {
22
- overflow: hidden;
23
- text-overflow: ellipsis;
24
- white-space: nowrap;
22
+ overflow: visible;
23
+ text-overflow: unset;
24
+ word-wrap: break-word;
25
+ white-space: normal;
26
+ vertical-align: baseline;
27
+ }
28
+
29
+ // Better readability on mobile
30
+ @media (max-width: #{$content-width - 1}) {
31
+ font-size: 16px;
32
+ line-height: 1.6;
25
33
  }
26
34
 
27
35
  ul,
@@ -0,0 +1,206 @@
1
+ // Custom styles for FNI Docs Theme
2
+
3
+ // Mobile Navigation Fixes
4
+ @media (max-width: #{$content-width - 1}) {
5
+ // Fix mobile header
6
+ .site-header {
7
+ position: relative;
8
+ height: 3.5rem;
9
+ min-height: 3.5rem;
10
+ }
11
+
12
+ // Fix site title on mobile
13
+ .site-title {
14
+ padding-right: $sp-8; // Make room for buttons
15
+ font-size: 1.125rem;
16
+ }
17
+
18
+ // Mobile navigation button styles
19
+ .site-button {
20
+ position: absolute;
21
+ top: 0;
22
+ right: 0;
23
+ z-index: 101;
24
+ display: flex !important;
25
+ align-items: center;
26
+ justify-content: center;
27
+ width: 3.5rem;
28
+ height: 3.5rem;
29
+ padding: 0;
30
+ background: transparent;
31
+ border: 0;
32
+ }
33
+
34
+ // Hide close button by default
35
+ .close-button {
36
+ display: none !important;
37
+ }
38
+
39
+ // When nav is open
40
+ .nav-open {
41
+ .site-button {
42
+ display: none !important;
43
+ }
44
+
45
+ .close-button {
46
+ position: absolute;
47
+ top: 50%;
48
+ right: $gutter-spacing-sm;
49
+ z-index: 1001;
50
+ display: flex !important;
51
+ align-items: center;
52
+ justify-content: center;
53
+ width: 2.5rem;
54
+ height: 2.5rem;
55
+ padding: 0;
56
+ background: transparent;
57
+ border: 0;
58
+ transform: translateY(-50%);
59
+
60
+ &:hover {
61
+ background: rgba($body-text-color, 0.1);
62
+ border-radius: $border-radius;
63
+ }
64
+ }
65
+ }
66
+
67
+ // Fix navigation padding and spacing
68
+ .site-nav {
69
+ padding: $sp-3 0;
70
+ }
71
+
72
+ // Ensure navigation items don't overlap
73
+ .nav-list-link {
74
+ display: flex;
75
+ align-items: center;
76
+ width: 100%;
77
+ min-height: 44px;
78
+ padding: $sp-3 $gutter-spacing-sm;
79
+ text-decoration: none;
80
+ word-wrap: break-word;
81
+ white-space: normal;
82
+ transition: background-color 0.2s ease;
83
+
84
+ &:hover,
85
+ &.active {
86
+ background-color: rgba($feedback-color, 0.1);
87
+ background-image: none;
88
+ }
89
+ }
90
+
91
+ // Fix child navigation items
92
+ .nav-list-item > .nav-list .nav-list-link {
93
+ padding-left: $sp-6;
94
+ }
95
+
96
+ // Fix expander positioning and styling
97
+ .nav-list-expander {
98
+ position: absolute;
99
+ top: 0;
100
+ right: 0;
101
+ display: flex;
102
+ align-items: center;
103
+ justify-content: center;
104
+ width: 44px;
105
+ height: 44px;
106
+ padding: 0;
107
+ cursor: pointer;
108
+ background: transparent;
109
+ border: 0;
110
+
111
+ &:hover {
112
+ background-color: rgba($feedback-color, 0.1);
113
+ background-image: none;
114
+ }
115
+ }
116
+
117
+ // Clean up active state
118
+ .nav-list-item.active > .nav-list-expander .icon {
119
+ transform: rotate(90deg);
120
+ }
121
+
122
+ // Ensure proper contrast in dark mode
123
+ .nav-list-item {
124
+ .nav-list-link {
125
+ color: $body-text-color;
126
+ }
127
+
128
+ .nav-list-link:hover,
129
+ .nav-list-link.active {
130
+ color: $body-heading-color;
131
+ }
132
+ }
133
+
134
+ // Better spacing for footer
135
+ .site-footer {
136
+ padding: $sp-3;
137
+ font-size: 0.75rem;
138
+ text-align: center;
139
+ }
140
+
141
+ // Remove gradient backgrounds
142
+ .nav-list-link,
143
+ .nav-list-expander,
144
+ .site-button {
145
+ background-image: none !important;
146
+ }
147
+
148
+ // Fix table spacing on mobile
149
+ .table-wrapper {
150
+ margin-right: 0;
151
+ margin-left: 0;
152
+ }
153
+
154
+ // Ensure proper content padding on mobile
155
+ .main-content {
156
+ padding-right: $gutter-spacing-sm;
157
+ padding-left: $gutter-spacing-sm;
158
+ }
159
+ }
160
+
161
+ // Fix button text cutoff globally
162
+ .btn {
163
+ display: inline-flex !important;
164
+ align-items: center !important;
165
+ justify-content: center !important;
166
+ min-height: 2.5em !important;
167
+ box-sizing: border-box !important;
168
+ padding: 0.5em 1em !important;
169
+ margin: 0.25em !important;
170
+ overflow: visible !important;
171
+ font-size: inherit !important;
172
+ line-height: 1.5 !important;
173
+ text-align: center !important;
174
+ text-overflow: clip !important;
175
+ white-space: nowrap !important;
176
+ vertical-align: middle !important;
177
+
178
+ // Override any conflicting styles
179
+ &:not(.btn-sm):not(.btn-xs):not(.btn-lg) {
180
+ padding-top: 0.5em !important;
181
+ padding-bottom: 0.5em !important;
182
+ }
183
+ }
184
+
185
+ // Fix main content text cutoff
186
+ .main-content {
187
+ overflow-wrap: break-word;
188
+ word-wrap: break-word;
189
+
190
+ // Fix inline links display - removed due to stylelint restrictions
191
+ }
192
+
193
+ // Ensure sidebar is visible on desktop
194
+ @include mq(md) {
195
+ .side-bar {
196
+ position: fixed !important;
197
+ display: flex !important;
198
+ transform: translateX(0) !important;
199
+ }
200
+
201
+ // Hide mobile nav buttons on desktop
202
+ .site-button,
203
+ .close-button {
204
+ display: none !important;
205
+ }
206
+ }
data/_sass/layout.scss CHANGED
@@ -3,7 +3,7 @@
3
3
  //
4
4
 
5
5
  .side-bar {
6
- z-index: 0;
6
+ z-index: 100;
7
7
  display: flex;
8
8
  flex-wrap: wrap;
9
9
  background-color: $sidebar-color;
@@ -197,3 +197,56 @@ body {
197
197
  height: $sp-5;
198
198
  color: $link-color;
199
199
  }
200
+
201
+ // Mobile navigation with smooth animation
202
+ @media (max-width: #{$content-width - 1}) {
203
+ .site-nav {
204
+ position: fixed;
205
+ top: 0;
206
+ left: -100%;
207
+ z-index: 1000;
208
+ width: 80%;
209
+ max-width: 320px;
210
+ height: 100vh;
211
+ padding-top: $header-height;
212
+ overflow-y: auto;
213
+ background-color: $sidebar-color;
214
+ box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
215
+ transition: left 0.3s ease-in-out;
216
+ }
217
+ }
218
+
219
+ @media (max-width: #{$content-width - 1}) {
220
+ .nav-open .site-nav {
221
+ left: 0;
222
+ }
223
+ }
224
+
225
+ // Mobile overlay
226
+ .mobile-overlay {
227
+ position: fixed;
228
+ top: 0;
229
+ right: 0;
230
+ bottom: 0;
231
+ left: 0;
232
+ z-index: 999;
233
+ display: none;
234
+ background: rgba(0, 0, 0, 0.3);
235
+
236
+ @media (max-width: #{$content-width - 1}) {
237
+ .nav-open & {
238
+ display: block;
239
+ }
240
+ }
241
+ }
242
+
243
+ // Site button hover states
244
+ @media (min-width: #{$content-width}) {
245
+ .site-button:hover {
246
+ background-image: linear-gradient(
247
+ -90deg,
248
+ rgba($feedback-color, 1) 0%,
249
+ rgba($feedback-color, 0.8) 100%
250
+ );
251
+ }
252
+ }
@@ -9,6 +9,11 @@
9
9
  margin-bottom: 0;
10
10
  list-style: none;
11
11
 
12
+ // Add padding on mobile for better touch targets
13
+ @media (max-width: #{$content-width - 1}) {
14
+ padding: $sp-2 0;
15
+ }
16
+
12
17
  .nav-list-item {
13
18
  @include fs-4;
14
19
  position: relative;
@@ -32,6 +37,12 @@
32
37
  padding-left: $nav-list-item-height-sm;
33
38
  }
34
39
 
40
+ // Fix mobile navigation padding
41
+ @media (max-width: #{$content-width - 1}) {
42
+ padding-right: $gutter-spacing-sm;
43
+ padding-left: $gutter-spacing-sm;
44
+ }
45
+
35
46
  @include mq(md) {
36
47
  min-height: $nav-list-item-height;
37
48
  line-height: #{$nav-list-item-height - 2 * $sp-1};
@@ -72,6 +83,7 @@
72
83
  padding-bottom: calc($nav-list-item-height-sm / 4);
73
84
  padding-left: calc($nav-list-item-height-sm / 4);
74
85
  color: $link-color;
86
+ cursor: pointer;
75
87
 
76
88
  @include mq(md) {
77
89
  width: $nav-list-item-height;
@@ -193,6 +205,12 @@
193
205
  padding-left: 0;
194
206
  margin-bottom: $sp-3;
195
207
  list-style: none;
208
+
209
+ // Better mobile breadcrumbs
210
+ @media (max-width: #{$content-width - 1}) {
211
+ display: flex;
212
+ flex-wrap: wrap;
213
+ }
196
214
  }
197
215
 
198
216
  .breadcrumb-nav-list-item {
@@ -10,7 +10,7 @@
10
10
  &.zeroclipboard-is-hover {
11
11
  color: $fg;
12
12
  background-color: darken($bg, 4%);
13
- background-image: linear-gradient((lighten($bg, 2%), darken($bg, 4%)));
13
+ background-image: linear-gradient(lighten($bg, 2%), darken($bg, 4%));
14
14
  }
15
15
 
16
16
  &:active,
@@ -174,7 +174,8 @@ textarea {
174
174
  */
175
175
 
176
176
  button,
177
- input { /* 1 */
177
+ input {
178
+ /* 1 */
178
179
  overflow: visible;
179
180
  }
180
181
 
@@ -184,7 +185,8 @@ input { /* 1 */
184
185
  */
185
186
 
186
187
  button,
187
- select { /* 1 */
188
+ select {
189
+ /* 1 */
188
190
  text-transform: none;
189
191
  }
190
192
 
data/assets/js/jtd-nav.js CHANGED
@@ -1,35 +1,37 @@
1
1
  // Rather than generating a new left-nav for every page, generate a single nav and use JS to expand the current page
2
2
 
3
- (function (jtd) {
3
+ ;(function (jtd) {
4
+ function initNavControls() {
5
+ const siteNav = document.getElementById("site-nav")
4
6
 
5
- function initNavControls() {
6
- const siteNav = document.getElementById('site-nav')
7
+ const pageUrl = siteNav.dataset.pageUrl
8
+ const pageParent = siteNav.dataset.pageParent
9
+ const pageGrandParent = siteNav.dataset.pageGrandParent
7
10
 
8
- const pageUrl = siteNav.dataset.pageUrl
9
- const pageParent = siteNav.dataset.pageParent
10
- const pageGrandParent = siteNav.dataset.pageGrandParent
11
+ console.log({ pageUrl, pageParent, pageGrandParent })
11
12
 
12
- console.log({pageUrl, pageParent, pageGrandParent})
13
+ const navItems = siteNav.getElementsByClassName("nav-list-item")
13
14
 
14
- const navItems = siteNav.getElementsByClassName('nav-list-item')
15
+ for (const navItem of navItems) {
16
+ const itemUrl = navItem.dataset.url
17
+ const itemTitle = navItem.dataset.title
15
18
 
16
- for (const navItem of navItems) {
17
- const itemUrl = navItem.dataset.url
18
- const itemTitle = navItem.dataset.title
19
+ console.log({ itemUrl, itemTitle })
19
20
 
20
- console.log({itemUrl, itemTitle})
21
-
22
- if (itemUrl === pageUrl || itemTitle === pageParent || itemTitle == pageGrandParent) {
23
- navItem.classList.add('active')
24
- navItem.querySelector('.nav-list-link').classList.add('active')
21
+ if (
22
+ itemUrl === pageUrl ||
23
+ itemTitle === pageParent ||
24
+ itemTitle == pageGrandParent
25
+ ) {
26
+ navItem.classList.add("active")
27
+ navItem.querySelector(".nav-list-link").classList.add("active")
25
28
 
26
- navItem.scrollIntoView()
29
+ navItem.scrollIntoView()
30
+ }
27
31
  }
28
32
  }
29
- }
30
-
31
- jtd.onReady(function(){
32
- initNavControls()
33
- })
34
33
 
34
+ jtd.onReady(function () {
35
+ initNavControls()
36
+ })
35
37
  })(window.jtd)
@@ -38,16 +38,45 @@ function initNav() {
38
38
  const siteNav = document.getElementById('site-nav');
39
39
  const mainHeader = document.getElementById('main-header');
40
40
  const menuButton = document.getElementById('menu-button');
41
+ const closeButton = document.getElementById('close-button');
42
+
43
+ // Create mobile overlay
44
+ let mobileOverlay = document.querySelector('.mobile-overlay');
45
+ if (!mobileOverlay) {
46
+ mobileOverlay = document.createElement('div');
47
+ mobileOverlay.className = 'mobile-overlay';
48
+ document.body.appendChild(mobileOverlay);
49
+ }
41
50
 
42
- jtd.addEvent(menuButton, 'click', function(e){
43
- e.preventDefault();
44
-
51
+ function toggleNav() {
45
52
  if (menuButton.classList.toggle('nav-open')) {
46
53
  siteNav.classList.add('nav-open');
47
54
  mainHeader.classList.add('nav-open');
55
+ document.body.classList.add('nav-open');
48
56
  } else {
49
57
  siteNav.classList.remove('nav-open');
50
58
  mainHeader.classList.remove('nav-open');
59
+ document.body.classList.remove('nav-open');
60
+ }
61
+ }
62
+
63
+ jtd.addEvent(menuButton, 'click', function(e){
64
+ e.preventDefault();
65
+ toggleNav();
66
+ });
67
+
68
+ if (closeButton) {
69
+ jtd.addEvent(closeButton, 'click', function(e){
70
+ e.preventDefault();
71
+ toggleNav();
72
+ });
73
+ }
74
+
75
+ // Close nav when clicking overlay
76
+ jtd.addEvent(mobileOverlay, 'click', function(e){
77
+ e.preventDefault();
78
+ if (document.body.classList.contains('nav-open')) {
79
+ toggleNav();
51
80
  }
52
81
  });
53
82
 
data/assets/js/links.js CHANGED
@@ -1,18 +1,17 @@
1
-
2
1
  window.jtd.onReady(() => {
3
2
  externalLinks()
4
3
  })
5
4
 
6
5
  // Find all anchor links on the page that reference external pages or static files and open them in a new tab
7
6
  function externalLinks() {
8
- const newTabExtensions = ['.pdf', '.png', '.svg']
9
- const links = document.getElementsByTagName('a')
7
+ const newTabExtensions = [".pdf", ".png", ".svg"]
8
+ const links = document.getElementsByTagName("a")
10
9
  for (const link of links) {
11
- const href = link.getAttribute('href')
10
+ const href = link.getAttribute("href")
12
11
  if (href && link.hostname !== location.hostname) {
13
- link.target = "_blank";
14
- link.rel = "noopener";
15
- } else if (href && newTabExtensions.some(ext => href.indexOf(ext) > 0)) {
12
+ link.target = "_blank"
13
+ link.rel = "noopener"
14
+ } else if (href && newTabExtensions.some((ext) => href.indexOf(ext) > 0)) {
16
15
  link.onclick = function () {
17
16
  window.open(this.href)
18
17
  return false
@@ -1,4 +1,3 @@
1
-
2
1
  window.jtd.onReady(() => {
3
2
  initDiags()
4
3
  })
@@ -8,20 +7,21 @@ async function initDiags() {
8
7
  const defaultHeight = 400
9
8
 
10
9
  const curPath = window.location.pathname
11
- const diags = document.getElementsByClassName('plantuml-diagram')
10
+ const diags = document.getElementsByClassName("plantuml-diagram")
12
11
 
13
12
  for (const diag of diags) {
14
13
  const src = diag.dataset.diagramSrc
15
- const svgSrc = src.replace('.iuml', '.svg')
16
- const diagCont = diag.getElementsByClassName('plantuml-diagram-inner')[0]
17
- const viewCont = diag.getElementsByClassName('plantuml-diagram-open')[0]
14
+ const svgSrc = src.replace(".iuml", ".svg")
15
+ const diagCont = diag.getElementsByClassName("plantuml-diagram-inner")[0]
16
+ const viewCont = diag.getElementsByClassName("plantuml-diagram-open")[0]
18
17
  const width = diag.dataset.diagramWidth || defaultWidth
19
18
  const height = diag.dataset.diagramHeight || defaultHeight
20
19
 
21
20
  // Fetch the svg
22
21
  const svgRes = await fetch(curPath + svgSrc)
23
22
  if (!svgRes.ok) {
24
- diagCont.innerHTML = '<div class="error-msg">Failed to retrieve diagram</div>'
23
+ diagCont.innerHTML =
24
+ '<div class="error-msg">Failed to retrieve diagram</div>'
25
25
  continue
26
26
  }
27
27
 
@@ -31,11 +31,11 @@ async function initDiags() {
31
31
  const svg = await svgRes.text()
32
32
 
33
33
  diagCont.innerHTML = svg
34
- const svgElement = diag.getElementsByTagName('svg')[0]
34
+ const svgElement = diag.getElementsByTagName("svg")[0]
35
35
 
36
36
  svgElement.style.width = width
37
37
  svgElement.style.height = height
38
- svgElement.style.backgroundColor = '#333'
38
+ svgElement.style.backgroundColor = "#333"
39
39
 
40
40
  const spz = svgPanZoom(svgElement, {
41
41
  zoomEnabled: true,
@@ -44,10 +44,10 @@ async function initDiags() {
44
44
  center: true,
45
45
  dblClickZoomEnabled: false,
46
46
  customEventsHandler: {
47
- init: options => {
47
+ init: (options) => {
48
48
  // Double click to toggle fullscreen
49
- options.svgElement.addEventListener('dblclick', () => {
50
- if (options.svgElement.style.position === 'fixed') {
49
+ options.svgElement.addEventListener("dblclick", () => {
50
+ if (options.svgElement.style.position === "fixed") {
51
51
  options.svgElement.style.position = null
52
52
  options.svgElement.style.left = null
53
53
  options.svgElement.style.top = null
@@ -55,10 +55,10 @@ async function initDiags() {
55
55
  options.svgElement.style.width = width
56
56
  options.svgElement.style.height = height
57
57
  } else {
58
- options.svgElement.style.position = 'fixed'
59
- options.svgElement.style.left = '20px'
60
- options.svgElement.style.top = '20px'
61
- options.svgElement.style.zIndex = '9999'
58
+ options.svgElement.style.position = "fixed"
59
+ options.svgElement.style.left = "20px"
60
+ options.svgElement.style.top = "20px"
61
+ options.svgElement.style.zIndex = "9999"
62
62
  options.svgElement.style.width = getWidth() - 40
63
63
  options.svgElement.style.height = getHeight() - 40
64
64
  }
@@ -68,8 +68,8 @@ async function initDiags() {
68
68
  options.instance.fit()
69
69
  options.instance.center()
70
70
  })
71
- }
72
- }
71
+ },
72
+ },
73
73
  })
74
74
  }
75
75
  }
@@ -81,7 +81,7 @@ function getWidth() {
81
81
  document.body.offsetWidth,
82
82
  document.documentElement.offsetWidth,
83
83
  document.documentElement.clientWidth
84
- );
84
+ )
85
85
  }
86
86
 
87
87
  function getHeight() {
@@ -91,5 +91,5 @@ function getHeight() {
91
91
  document.body.offsetHeight,
92
92
  document.documentElement.offsetHeight,
93
93
  document.documentElement.clientHeight
94
- );
94
+ )
95
95
  }
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fni-docs-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Marsceill
8
8
  - Ken Hill
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2023-02-15 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: bundler
@@ -101,7 +100,6 @@ dependencies:
101
100
  - - "~>"
102
101
  - !ruby/object:Gem::Version
103
102
  version: '3.1'
104
- description:
105
103
  email:
106
104
  - patrick.marsceill@gmail.com
107
105
  - rubygems@hill.ae
@@ -183,7 +181,6 @@ homepage: https://github.com/dealertrack/fni-docs-theme
183
181
  licenses:
184
182
  - MIT
185
183
  metadata: {}
186
- post_install_message:
187
184
  rdoc_options: []
188
185
  require_paths:
189
186
  - lib
@@ -198,8 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
195
  - !ruby/object:Gem::Version
199
196
  version: '0'
200
197
  requirements: []
201
- rubygems_version: 3.3.26
202
- signing_key:
198
+ rubygems_version: 3.6.9
203
199
  specification_version: 4
204
200
  summary: Fork of just-the-docs
205
201
  test_files: []