hookapp 2.1.1 → 2.1.2
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/bin/hook +1 -1
- data/hookapp.gemspec +1 -1
- data/html/App.html +36 -24
- data/html/GLI/Commands/Doc.html +55 -19
- data/html/GLI/Commands/MarkdownDocumentListener.html +309 -151
- data/html/GLI/Commands.html +49 -19
- data/html/GLI.html +33 -19
- data/html/Hook/Prompt.html +50 -20
- data/html/Hook/PromptFZF.html +129 -69
- data/html/Hook/PromptSTD.html +104 -52
- data/html/Hook.html +34 -19
- data/html/HookApp.html +487 -265
- data/html/Hooker.html +60 -42
- data/html/Object.html +36 -23
- data/html/README_rdoc.html +180 -75
- data/html/String.html +185 -103
- data/html/created.rid +10 -10
- data/html/css/rdoc.css +402 -358
- data/html/fonts/SourceCodePro-Bold.ttf +0 -0
- data/html/fonts/SourceCodePro-Regular.ttf +0 -0
- data/html/index.html +193 -45
- data/html/js/darkfish.js +38 -2
- data/html/js/navigation.js +8 -8
- data/html/js/navigation.js.gz +0 -0
- data/html/js/search.js +4 -4
- data/html/js/search_index.js +1 -1
- data/html/js/search_index.js.gz +0 -0
- data/html/js/searcher.js.gz +0 -0
- data/html/table_of_contents.html +52 -8
- data/lib/hook/hookapp.rb +8 -4
- data/lib/hook/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e6b6d7132964f75dc93e20baa3176d8a4d8e405fe291fcc2245746685b0d60d0
|
|
4
|
+
data.tar.gz: b710447722b8c5ab55f4bf68d29aae161e4058af847f02b383f149a68e8b4de8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c169a30c1848e2476d19a9ccd0a244164de1871cff701c04dec42f698e69f870836667c44688881f14d484bab3bbcc758ad28ff80ca72d48523cf5586d8adb77
|
|
7
|
+
data.tar.gz: 12f2ca9ab5d0528251a69aa5319c29a4cec939eb676339dd86d635b2c4ab44519fb596953e00eab861df351031fb3a35ef7426342cf177c50f82cbd9b9e82d07
|
data/bin/hook
CHANGED
data/hookapp.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
# Ensure we require the local version and not one we might have installed already
|
|
4
|
-
require
|
|
4
|
+
require './lib/hook/version'
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = 'hookapp'
|
|
7
7
|
s.version = Hook::VERSION
|
data/html/App.html
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
|
|
3
|
-
<html>
|
|
3
|
+
<html lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<meta charset="UTF-8">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
7
|
|
|
7
8
|
<title>class App - hookapp</title>
|
|
8
9
|
|
|
10
|
+
<meta name="keywords" content="ruby,class,App">
|
|
11
|
+
|
|
12
|
+
<meta name="description" content="class App: Main class for GLI app">
|
|
13
|
+
|
|
14
|
+
|
|
9
15
|
<script type="text/javascript">
|
|
10
16
|
var rdoc_rel_prefix = "./";
|
|
11
17
|
var index_rel_prefix = "./";
|
|
@@ -22,7 +28,12 @@
|
|
|
22
28
|
|
|
23
29
|
|
|
24
30
|
<body id="top" role="document" class="class">
|
|
25
|
-
<
|
|
31
|
+
<div id="navigation-toggle" role="button" tabindex="0" aria-label="Toggle sidebar" aria-expanded="true" aria-controls="navigation">
|
|
32
|
+
<span aria-hidden="true">☰</span>
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<nav id="navigation" role="navigation">
|
|
26
37
|
<div id="project-navigation">
|
|
27
38
|
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
|
28
39
|
<h2>
|
|
@@ -41,7 +52,7 @@
|
|
|
41
52
|
<div id="search-field-wrapper">
|
|
42
53
|
<input id="search-field" role="combobox" aria-label="Search"
|
|
43
54
|
aria-autocomplete="list" aria-controls="search-results"
|
|
44
|
-
type="text" name="search" placeholder="Search" spellcheck="false"
|
|
55
|
+
type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
|
|
45
56
|
title="Type to search, Up and Down to navigate, Enter to load">
|
|
46
57
|
</div>
|
|
47
58
|
|
|
@@ -54,18 +65,14 @@
|
|
|
54
65
|
</div>
|
|
55
66
|
|
|
56
67
|
|
|
57
|
-
|
|
58
|
-
<div id="class-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
<div id="parent-class-section" class="nav-section">
|
|
62
|
-
<h3>Parent</h3>
|
|
63
|
-
|
|
64
|
-
<p class="link"><a href="Object.html">Object</a>
|
|
68
|
+
|
|
69
|
+
<div id="parent-class-section" class="nav-section">
|
|
70
|
+
<h3>Ancestors</h3>
|
|
71
|
+
<ul><li><a href="Object.html">Object</a><ul><li>BasicObject</li></ul></li></ul>
|
|
65
72
|
</div>
|
|
66
73
|
|
|
67
|
-
|
|
68
|
-
|
|
74
|
+
|
|
75
|
+
|
|
69
76
|
<div id="extends-section" class="nav-section">
|
|
70
77
|
<h3>Extended With Modules</h3>
|
|
71
78
|
|
|
@@ -74,12 +81,24 @@
|
|
|
74
81
|
</ul>
|
|
75
82
|
</div>
|
|
76
83
|
|
|
77
|
-
|
|
78
|
-
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
<footer id="validator-badges" role="contentinfo">
|
|
90
|
+
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
|
91
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.14.0.
|
|
92
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
|
93
|
+
</footer>
|
|
94
|
+
|
|
79
95
|
</nav>
|
|
80
96
|
|
|
81
97
|
<main role="main" aria-labelledby="class-App">
|
|
82
|
-
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
<h1 id="class-App" class="anchor-link class">
|
|
83
102
|
class App
|
|
84
103
|
</h1>
|
|
85
104
|
|
|
@@ -89,7 +108,7 @@
|
|
|
89
108
|
|
|
90
109
|
</section>
|
|
91
110
|
|
|
92
|
-
<section id="5Buntitled-5D" class="documentation-section">
|
|
111
|
+
<section id="5Buntitled-5D" class="documentation-section anchor-link">
|
|
93
112
|
|
|
94
113
|
|
|
95
114
|
|
|
@@ -98,10 +117,3 @@
|
|
|
98
117
|
</section>
|
|
99
118
|
</main>
|
|
100
119
|
|
|
101
|
-
|
|
102
|
-
<footer id="validator-badges" role="contentinfo">
|
|
103
|
-
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
|
104
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.3.
|
|
105
|
-
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
|
106
|
-
</footer>
|
|
107
|
-
|
data/html/GLI/Commands/Doc.html
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
|
|
3
|
-
<html>
|
|
3
|
+
<html lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<meta charset="UTF-8">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
7
|
|
|
7
8
|
<title>module GLI::Commands::Doc - hookapp</title>
|
|
8
9
|
|
|
10
|
+
<meta name="keywords" content="ruby,module,GLI::Commands::Doc">
|
|
11
|
+
|
|
12
|
+
<meta name="description" content="Documentation for the GLI::Commands::Doc module">
|
|
13
|
+
|
|
14
|
+
|
|
9
15
|
<script type="text/javascript">
|
|
10
16
|
var rdoc_rel_prefix = "../../";
|
|
11
17
|
var index_rel_prefix = "../../";
|
|
@@ -22,7 +28,12 @@
|
|
|
22
28
|
|
|
23
29
|
|
|
24
30
|
<body id="top" role="document" class="module">
|
|
25
|
-
<
|
|
31
|
+
<div id="navigation-toggle" role="button" tabindex="0" aria-label="Toggle sidebar" aria-expanded="true" aria-controls="navigation">
|
|
32
|
+
<span aria-hidden="true">☰</span>
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<nav id="navigation" role="navigation">
|
|
26
37
|
<div id="project-navigation">
|
|
27
38
|
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
|
28
39
|
<h2>
|
|
@@ -41,7 +52,7 @@
|
|
|
41
52
|
<div id="search-field-wrapper">
|
|
42
53
|
<input id="search-field" role="combobox" aria-label="Search"
|
|
43
54
|
aria-autocomplete="list" aria-controls="search-results"
|
|
44
|
-
type="text" name="search" placeholder="Search" spellcheck="false"
|
|
55
|
+
type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
|
|
45
56
|
title="Type to search, Up and Down to navigate, Enter to load">
|
|
46
57
|
</div>
|
|
47
58
|
|
|
@@ -54,18 +65,50 @@
|
|
|
54
65
|
</div>
|
|
55
66
|
|
|
56
67
|
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
<footer id="validator-badges" role="contentinfo">
|
|
78
|
+
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
|
79
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.14.0.
|
|
80
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
|
81
|
+
</footer>
|
|
57
82
|
|
|
58
|
-
<div id="class-metadata">
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
</div>
|
|
65
83
|
</nav>
|
|
66
84
|
|
|
67
85
|
<main role="main" aria-labelledby="module-GLI::Commands::Doc">
|
|
68
|
-
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
<ol role="navigation" aria-label="breadcrumb" class="breadcrumb">
|
|
89
|
+
|
|
90
|
+
<li>
|
|
91
|
+
|
|
92
|
+
<a href="../../GLI.html">GLI</a><span>::</span>
|
|
93
|
+
|
|
94
|
+
</li>
|
|
95
|
+
|
|
96
|
+
<li>
|
|
97
|
+
|
|
98
|
+
<a href="../../GLI/Commands.html">Commands</a><span>::</span>
|
|
99
|
+
|
|
100
|
+
</li>
|
|
101
|
+
|
|
102
|
+
<li>
|
|
103
|
+
|
|
104
|
+
<span>Doc</span>
|
|
105
|
+
|
|
106
|
+
</li>
|
|
107
|
+
|
|
108
|
+
</ol>
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
<h1 id="module-GLI::Commands::Doc" class="anchor-link module">
|
|
69
112
|
module GLI::Commands::Doc
|
|
70
113
|
</h1>
|
|
71
114
|
|
|
@@ -73,7 +116,7 @@
|
|
|
73
116
|
|
|
74
117
|
</section>
|
|
75
118
|
|
|
76
|
-
<section id="5Buntitled-5D" class="documentation-section">
|
|
119
|
+
<section id="5Buntitled-5D" class="documentation-section anchor-link">
|
|
77
120
|
|
|
78
121
|
|
|
79
122
|
|
|
@@ -82,10 +125,3 @@
|
|
|
82
125
|
</section>
|
|
83
126
|
</main>
|
|
84
127
|
|
|
85
|
-
|
|
86
|
-
<footer id="validator-badges" role="contentinfo">
|
|
87
|
-
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
|
88
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.3.
|
|
89
|
-
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
|
90
|
-
</footer>
|
|
91
|
-
|