hookapp 2.0.3 → 2.0.8
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/.gitignore +1 -0
- data/AUTHORS.md +4 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +49 -66
- data/LICENSE +21 -0
- data/README.md +52 -19
- data/Rakefile +7 -3
- data/bin/hook +114 -78
- data/buildnotes.md +30 -0
- data/hook.rdoc +35 -11
- data/hookapp.gemspec +2 -2
- data/html/App.html +6 -18
- data/html/GLI/Commands/Doc.html +2 -10
- data/html/GLI/Commands/MarkdownDocumentListener.html +34 -230
- data/html/GLI/Commands.html +2 -10
- data/html/GLI.html +2 -10
- data/html/Hook.html +2 -15
- data/html/HookApp.html +99 -319
- data/html/Hooker.html +46 -24
- data/html/README_rdoc.html +49 -23
- data/html/String.html +28 -120
- data/html/created.rid +8 -8
- data/html/css/rdoc.css +21 -1
- data/html/index.html +38 -29
- data/html/js/navigation.js.gz +0 -0
- 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 +33 -77
- data/lib/helpers/fuzzyfilefinder +0 -0
- data/lib/hook/hookapp.rb +39 -21
- data/lib/hook/hooker.rb +5 -2
- data/lib/hook/markdown_document_listener.rb +12 -2
- data/lib/hook/string.rb +4 -0
- data/lib/hook/version.rb +1 -1
- data/lib/hook.rb +5 -4
- data/test/helpers/hook-helpers.rb +76 -0
- data/test/hook_clip_test.rb +24 -0
- data/test/hook_clone_test.rb +30 -0
- data/test/hook_encode_test.rb +30 -0
- data/test/hook_link_test.rb +39 -0
- data/test/hook_list_test.rb +25 -0
- data/test/hook_remove_test.rb +34 -0
- data/test/hook_scripts_test.rb +21 -0
- metadata +19 -22
- data/test/default_test.rb +0 -14
- data/test/hookfiles/01.test +0 -0
- data/test/hookfiles/02.test +0 -0
- data/test/hookfiles/03.test +0 -0
- data/test/hookfiles/04.test +0 -0
- data/test/hookfiles/05.test +0 -0
- data/test/hookfiles/06.test +0 -0
- data/test/hookfiles/07.test +0 -0
- data/test/hookfiles/08.test +0 -0
- data/test/hookfiles/09.test +0 -0
- data/test/hookfiles/10.test +0 -0
- data/test/hookfiles/11.test +0 -0
- data/test/hookfiles/12.test +0 -0
data/html/created.rid
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
|
1
|
+
Sun, 26 Sep 2021 11:17:54 -0500
|
2
2
|
README.rdoc Tue, 07 Jul 2020 16:57:07 -0500
|
3
|
-
lib/hook.rb
|
4
|
-
lib/hook/hookapp.rb
|
5
|
-
lib/hook/hooker.rb
|
6
|
-
lib/hook/markdown_document_listener.rb
|
7
|
-
lib/hook/string.rb
|
8
|
-
lib/hook/version.rb
|
9
|
-
bin/hook
|
3
|
+
lib/hook.rb Sat, 18 Sep 2021 12:27:39 -0500
|
4
|
+
lib/hook/hookapp.rb Sun, 26 Sep 2021 10:18:14 -0500
|
5
|
+
lib/hook/hooker.rb Sat, 18 Sep 2021 12:22:34 -0500
|
6
|
+
lib/hook/markdown_document_listener.rb Sun, 26 Sep 2021 07:45:59 -0500
|
7
|
+
lib/hook/string.rb Sat, 25 Sep 2021 03:43:59 -0500
|
8
|
+
lib/hook/version.rb Sun, 26 Sep 2021 11:17:38 -0500
|
9
|
+
bin/hook Sun, 26 Sep 2021 11:09:37 -0500
|
data/html/css/rdoc.css
CHANGED
@@ -79,6 +79,25 @@ pre {
|
|
79
79
|
border-radius: 0.2em;
|
80
80
|
}
|
81
81
|
|
82
|
+
table {
|
83
|
+
margin: 0;
|
84
|
+
border-spacing: 0;
|
85
|
+
border-collapse: collapse;
|
86
|
+
}
|
87
|
+
|
88
|
+
table tr th, table tr td {
|
89
|
+
padding: 0.2em 0.4em;
|
90
|
+
border: 1px solid #ccc;
|
91
|
+
}
|
92
|
+
|
93
|
+
table tr th {
|
94
|
+
background-color: #eceaed;
|
95
|
+
}
|
96
|
+
|
97
|
+
table tr:nth-child(even) td {
|
98
|
+
background-color: #f5f4f6;
|
99
|
+
}
|
100
|
+
|
82
101
|
/* @group Generic Classes */
|
83
102
|
|
84
103
|
.initially-hidden {
|
@@ -166,6 +185,7 @@ nav {
|
|
166
185
|
width: 260px;
|
167
186
|
font-family: Helvetica, sans-serif;
|
168
187
|
font-size: 14px;
|
188
|
+
border-right: 1px solid #ccc;
|
169
189
|
}
|
170
190
|
|
171
191
|
main {
|
@@ -276,7 +296,7 @@ ul.link-list .type {
|
|
276
296
|
-webkit-border-radius: 5px;
|
277
297
|
}
|
278
298
|
|
279
|
-
dl.
|
299
|
+
dl.note-list dt {
|
280
300
|
float: left;
|
281
301
|
margin-right: 1em;
|
282
302
|
}
|
data/html/index.html
CHANGED
@@ -21,8 +21,6 @@
|
|
21
21
|
<link href="./css/rdoc.css" rel="stylesheet">
|
22
22
|
|
23
23
|
|
24
|
-
|
25
|
-
|
26
24
|
<body id="top" role="document" class="file">
|
27
25
|
<nav role="navigation">
|
28
26
|
<div id="project-navigation">
|
@@ -57,13 +55,12 @@
|
|
57
55
|
</div>
|
58
56
|
|
59
57
|
<div id="project-metadata">
|
60
|
-
|
58
|
+
|
59
|
+
<div id="fileindex-section" class="nav-section">
|
61
60
|
<h3>Pages</h3>
|
62
61
|
|
63
62
|
<ul class="link-list">
|
64
|
-
|
65
63
|
<li><a href="./README_rdoc.html">README</a>
|
66
|
-
|
67
64
|
</ul>
|
68
65
|
</div>
|
69
66
|
|
@@ -71,25 +68,15 @@
|
|
71
68
|
<h3>Class and Module Index</h3>
|
72
69
|
|
73
70
|
<ul class="link-list">
|
74
|
-
|
75
71
|
<li><a href="./App.html">App</a>
|
76
|
-
|
77
72
|
<li><a href="./GLI.html">GLI</a>
|
78
|
-
|
79
73
|
<li><a href="./GLI/Commands.html">GLI::Commands</a>
|
80
|
-
|
81
74
|
<li><a href="./GLI/Commands/Doc.html">GLI::Commands::Doc</a>
|
82
|
-
|
83
75
|
<li><a href="./GLI/Commands/MarkdownDocumentListener.html">GLI::Commands::MarkdownDocumentListener</a>
|
84
|
-
|
85
76
|
<li><a href="./Hook.html">Hook</a>
|
86
|
-
|
87
77
|
<li><a href="./HookApp.html">HookApp</a>
|
88
|
-
|
89
78
|
<li><a href="./Hooker.html">Hooker</a>
|
90
|
-
|
91
79
|
<li><a href="./String.html">String</a>
|
92
|
-
|
93
80
|
</ul>
|
94
81
|
</div>
|
95
82
|
|
@@ -105,9 +92,11 @@
|
|
105
92
|
|
106
93
|
<h2 id="label-hook+-+CLI+interface+for+Hook.app+-28macOS-29">hook - CLI interface for Hook.app (macOS)<span><a href="#label-hook+-+CLI+interface+for+Hook.app+-28macOS-29">¶</a> <a href="#top">↑</a></span></h2>
|
107
94
|
|
108
|
-
<p>Hook.app is a productivity tool for macOS <<a href="https://hookproductivity.com">hookproductivity.com</a>/>
|
95
|
+
<p>Hook.app is a productivity tool for macOS <<a href="https://hookproductivity.com">hookproductivity.com</a>/>.</p>
|
109
96
|
|
110
|
-
<p>
|
97
|
+
<p>This gem includes a `hook` binary that allows interaction with the features of Hook.app.</p>
|
98
|
+
|
99
|
+
<p>v2.0.7</p>
|
111
100
|
|
112
101
|
<h3 id="label-Global+Options">Global Options<span><a href="#label-Global+Options">¶</a> <a href="#top">↑</a></span></h3>
|
113
102
|
|
@@ -127,7 +116,7 @@
|
|
127
116
|
|
128
117
|
<p>Creates a bookmark for the specified file or URL and copies its <a href="Hook.html"><code>Hook</code></a> URL to the clipboard.</p>
|
129
118
|
|
130
|
-
<p>The copied <a href="Hook.html"><code>Hook</code></a> URL can be used to link to other files (use `hook link –paste FILE/URL
|
119
|
+
<p>The copied <a href="Hook.html"><code>Hook</code></a> URL can be used to link to other files (use `hook link –paste FILE/URL`, or to paste into another app as a link. Use the -m flag to copy a full Markdown link.</p>
|
131
120
|
|
132
121
|
<h5 id="label-Options">Options<span><a href="#label-Options">¶</a> <a href="#top">↑</a></span></h5>
|
133
122
|
|
@@ -147,9 +136,11 @@
|
|
147
136
|
|
148
137
|
<p>Clone all hooks from one file or url onto another</p>
|
149
138
|
|
150
|
-
<p>Copy all the files and urls that the first file is hooked to onto another file
|
139
|
+
<p>Copy all the files and urls that the first file is hooked to onto another file.</p>
|
140
|
+
|
141
|
+
<p>Exactly two arguments (SOURCE, TARGET) required.</p>
|
151
142
|
|
152
|
-
<h4 id="label-Command-3A+find-7Csearch
|
143
|
+
<h4 id="label-Command-3A+find-7Csearch++-5BSEARCH_STRING-5D">Command: <code>find|search [SEARCH_STRING]</code><span><a href="#label-Command-3A+find-7Csearch++-5BSEARCH_STRING-5D">¶</a> <a href="#top">↑</a></span></h4>
|
153
144
|
|
154
145
|
<p>Search bookmarks</p>
|
155
146
|
|
@@ -159,7 +150,7 @@
|
|
159
150
|
|
160
151
|
<h5 id="label-Options">Options<span><a href="#label-Options">¶</a> <a href="#top">↑</a></span></h5>
|
161
152
|
|
162
|
-
<h5 id="label-o-7C--output_format+
|
153
|
+
<h5 id="label-o-7C--output_format+FORMAT">-o|–output_format FORMAT<span><a href="#label-o-7C--output_format+FORMAT">¶</a> <a href="#top">↑</a></span></h5>
|
163
154
|
|
164
155
|
<p>Output format [(h)ooks, (p)aths, (m)arkdown, (v)erbose]</p>
|
165
156
|
<dl class="rdoc-list label-list"><dt>Default Value
|
@@ -209,7 +200,7 @@
|
|
209
200
|
|
210
201
|
<p>List commands one per line, to assist with shell completion</p>
|
211
202
|
|
212
|
-
<h4 id="label-Command-3A+link-7Cln++SOURCE
|
203
|
+
<h4 id="label-Command-3A+link-7Cln++SOURCE...+TARGET">Command: <code>link|ln SOURCE... TARGET</code><span><a href="#label-Command-3A+link-7Cln++SOURCE...+TARGET">¶</a> <a href="#top">↑</a></span></h4>
|
213
204
|
|
214
205
|
<p>Create bidirectional hooks between two or more files/urls</p>
|
215
206
|
|
@@ -227,7 +218,7 @@
|
|
227
218
|
|
228
219
|
<p>Paste URL from clipboard</p>
|
229
220
|
|
230
|
-
<h4 id="label-Command-3A+list-7Cls
|
221
|
+
<h4 id="label-Command-3A+list-7Cls++-5BFILE_OR_URL-5D...">Command: <code>list|ls [FILE_OR_URL]...</code><span><a href="#label-Command-3A+list-7Cls++-5BFILE_OR_URL-5D...">¶</a> <a href="#top">↑</a></span></h4>
|
231
222
|
|
232
223
|
<p>List hooks on a file or url</p>
|
233
224
|
|
@@ -237,7 +228,7 @@
|
|
237
228
|
|
238
229
|
<h5 id="label-Options">Options<span><a href="#label-Options">¶</a> <a href="#top">↑</a></span></h5>
|
239
230
|
|
240
|
-
<h5 id="label-o-7C--output_format+
|
231
|
+
<h5 id="label-o-7C--output_format+FORMAT">-o|–output_format FORMAT<span><a href="#label-o-7C--output_format+FORMAT">¶</a> <a href="#top">↑</a></span></h5>
|
241
232
|
|
242
233
|
<p>Output format [(h)ooks, (p)aths, (m)arkdown, (v)erbose]</p>
|
243
234
|
<dl class="rdoc-list label-list"><dt>Default Value
|
@@ -263,9 +254,27 @@
|
|
263
254
|
|
264
255
|
<p>Open the specified file or url in <a href="Hook.html"><code>Hook</code></a> GUI</p>
|
265
256
|
|
266
|
-
<p>Opens Hook.app on the specified file/URL for browsing and performing actions
|
257
|
+
<p>Opens Hook.app on the specified file/URL for browsing and performing actions.</p>
|
258
|
+
|
259
|
+
<p>Exactly one argument (File/URL) required.</p>
|
260
|
+
|
261
|
+
<h4 id="label-Command-3A+percent++STRING">Command: <code>percent STRING</code><span><a href="#label-Command-3A+percent++STRING">¶</a> <a href="#top">↑</a></span></h4>
|
262
|
+
|
263
|
+
<p>Percent encode/decode a string</p>
|
264
|
+
|
265
|
+
<p>Use encode or decode to apply Hook's url encoding to a string argument. Use '-' to read input from STDIN.</p>
|
267
266
|
|
268
|
-
<
|
267
|
+
<h5 id="label-Commands">Commands<span><a href="#label-Commands">¶</a> <a href="#top">↑</a></span></h5>
|
268
|
+
|
269
|
+
<h6 id="label-Command-3A+decode++STRING">Command: <code>decode STRING</code><span><a href="#label-Command-3A+decode++STRING">¶</a> <a href="#top">↑</a></span></h6>
|
270
|
+
|
271
|
+
<p>decode a percent-encoded string</p>
|
272
|
+
|
273
|
+
<h6 id="label-Command-3A+encode++STRING">Command: <code>encode STRING</code><span><a href="#label-Command-3A+encode++STRING">¶</a> <a href="#top">↑</a></span></h6>
|
274
|
+
|
275
|
+
<p>percent encode a string</p>
|
276
|
+
|
277
|
+
<h4 id="label-Command-3A+remove-7Crm++FILE_OR_URL...">Command: <code>remove|rm FILE_OR_URL...</code><span><a href="#label-Command-3A+remove-7Crm++FILE_OR_URL...">¶</a> <a href="#top">↑</a></span></h4>
|
269
278
|
|
270
279
|
<p>Remove a hook between two files/urls</p>
|
271
280
|
|
@@ -279,6 +288,8 @@
|
|
279
288
|
|
280
289
|
<p>Remove ALL links on files, requires confirmation</p>
|
281
290
|
|
291
|
+
<h5 id="label-f-7C--force">-f|–force<span><a href="#label-f-7C--force">¶</a> <a href="#top">↑</a></span></h5>
|
292
|
+
|
282
293
|
<h4 id="label-Command-3A+scripts++SHELL">Command: <code>scripts SHELL</code><span><a href="#label-Command-3A+scripts++SHELL">¶</a> <a href="#top">↑</a></span></h4>
|
283
294
|
|
284
295
|
<p>Shell completion examples</p>
|
@@ -295,14 +306,12 @@
|
|
295
306
|
<p>help</p>
|
296
307
|
</dd></dl>
|
297
308
|
|
298
|
-
|
299
309
|
</main>
|
300
310
|
|
301
311
|
|
302
|
-
|
303
312
|
<footer id="validator-badges" role="contentinfo">
|
304
313
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
305
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.
|
314
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.2.
|
306
315
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
307
316
|
</footer>
|
308
317
|
|
data/html/js/navigation.js.gz
CHANGED
Binary file
|
data/html/js/search_index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
var search_data = {"index":{"searchIndex":["app","gli","commands","doc","markdowndocumentlistener","hook","hookapp","hooker","string","all_bookmarks()","beginning()","bookmark_for()","bookmark_from_app()","cap()","cap!()","clip()","clip_bookmark()","clone_hooks()","command()","commands()","copy_bookmark()","default_command()","delete_all_hooks()","delete_hooks()","end_command()","end_commands()","end_options()","ending()","flag()","format_regex()","get_hooks()","link_all()","link_files()","linked_bookmarks()","new()","nil_if_missing()","open_gui()","open_linked()","options()","output_array()","program_desc()","program_long_desc()","search_bookmarks()","search_name()","search_path_or_address()","select_hook()","split_hook()","split_hooks()","switch()","valid_hook()","valid_hook!()","validate_format()","version()","readme"],"longSearchIndex":["app","gli","gli::commands","gli::commands::doc","gli::commands::markdowndocumentlistener","hook","hookapp","hooker","string","hookapp#all_bookmarks()","gli::commands::markdowndocumentlistener#beginning()","hookapp#bookmark_for()","hookapp#bookmark_from_app()","string#cap()","string#cap!()","string#clip()","hookapp#clip_bookmark()","hookapp#clone_hooks()","gli::commands::markdowndocumentlistener#command()","gli::commands::markdowndocumentlistener#commands()","hookapp#copy_bookmark()","gli::commands::markdowndocumentlistener#default_command()","hookapp#delete_all_hooks()","hookapp#delete_hooks()","gli::commands::markdowndocumentlistener#end_command()","gli::commands::markdowndocumentlistener#end_commands()","gli::commands::markdowndocumentlistener#end_options()","gli::commands::markdowndocumentlistener#ending()","gli::commands::markdowndocumentlistener#flag()","hookapp#format_regex()","hookapp#get_hooks()","hookapp#link_all()","hookapp#link_files()","hookapp#linked_bookmarks()","gli::commands::markdowndocumentlistener::new()","string#nil_if_missing()","hookapp#open_gui()","hookapp#open_linked()","gli::commands::markdowndocumentlistener#options()","hookapp#output_array()","gli::commands::markdowndocumentlistener#program_desc()","gli::commands::markdowndocumentlistener#program_long_desc()","hookapp#search_bookmarks()","hookapp#search_name()","hookapp#search_path_or_address()","hookapp#select_hook()","string#split_hook()","string#split_hooks()","gli::commands::markdowndocumentlistener#switch()","string#valid_hook()","string#valid_hook!()","hookapp#validate_format()","gli::commands::markdowndocumentlistener#version()",""],"info":[["App","","App.html","","<p>Main class for GLI app\n"],["GLI","","GLI.html","",""],["GLI::Commands","","GLI/Commands.html","",""],["GLI::Commands::Doc","","GLI/Commands/Doc.html","",""],["GLI::Commands::MarkdownDocumentListener","","GLI/Commands/MarkdownDocumentListener.html","","<p>DocumentListener class for GLI documentation generator\n"],["Hook","","Hook.html","",""],["HookApp","","HookApp.html","","<p>Hook.app functions\n"],["Hooker","","Hooker.html","","<p>Hook.app CLI interface\n"],["String","","String.html","","<p>String helpers\n"],["all_bookmarks","HookApp","HookApp.html#method-i-all_bookmarks","()","<p>Get all known bookmarks. Return array of bookmark hashes.\n"],["beginning","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-beginning","()",""],["bookmark_for","HookApp","HookApp.html#method-i-bookmark_for","(url)","<p>Get a Hook bookmark for file or URL. Return bookmark hash.\n"],["bookmark_from_app","HookApp","HookApp.html#method-i-bookmark_from_app","(app, opts)","<p>Get a bookmark from the foreground document of specified app.\n"],["cap","String","String.html#method-i-cap","()","<p>Capitalize only if no uppercase\n"],["cap!","String","String.html#method-i-cap-21","()",""],["clip","String","String.html#method-i-clip","()",""],["clip_bookmark","HookApp","HookApp.html#method-i-clip_bookmark","(url, opts)","<p>Create a bookmark for specified file/url and copy to the clipboard.\n"],["clone_hooks","HookApp","HookApp.html#method-i-clone_hooks","(args)","<p>Copy all hooks from source file to target file\n"],["command","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-command","(name, aliases, desc, long_desc, arg_name, arg_options)","<p>Gives you a command in the current context and creates a new context of this command\n"],["commands","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-commands","()",""],["copy_bookmark","HookApp","HookApp.html#method-i-copy_bookmark","(title, url, opts)","<p>Create a bookmark from specified title and url and copy to the clipboard.\n"],["default_command","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-default_command","(name)","<p>Gives you the name of the current command in the current context\n"],["delete_all_hooks","HookApp","HookApp.html#method-i-delete_all_hooks","(url)","<p>Delete all hooked files/urls from target file\n"],["delete_hooks","HookApp","HookApp.html#method-i-delete_hooks","(args, opts)","<p>Delete hooks between two files/urls\n"],["end_command","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-end_command","(_name)","<p>Ends a command, and “pops” you back up one context\n"],["end_commands","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-end_commands","()",""],["end_options","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-end_options","()",""],["ending","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-ending","()","<p>Called when processing has completed\n"],["flag","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-flag","(name, aliases, desc, long_desc, default_value, arg_name, must_match, _type)","<p>Gives you a flag in the current context\n"],["format_regex","HookApp","HookApp.html#method-i-format_regex","(options)","<p>Create a single regex for validation of an array by first char or full match.\n"],["get_hooks","HookApp","HookApp.html#method-i-get_hooks","(url)","<p>Get bookmarks hooked to file or URL. Return array of bookmark hashes.\n"],["link_all","HookApp","HookApp.html#method-i-link_all","(args)","<p>Create bi-directional links between every file/url in the list of arguments\n"],["link_files","HookApp","HookApp.html#method-i-link_files","(args)","<p>Link 2 or more files/urls with bi-directional hooks.\n"],["linked_bookmarks","HookApp","HookApp.html#method-i-linked_bookmarks","(args, opts)","<p>Get a list of all hooks on a file/url.\n"],["new","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-c-new","(_global_options, _options, _arguments, app)",""],["nil_if_missing","String","String.html#method-i-nil_if_missing","()",""],["open_gui","HookApp","HookApp.html#method-i-open_gui","(url)","<p>Open the Hook GUI for browsing/performing actions on a file or url\n"],["open_linked","HookApp","HookApp.html#method-i-open_linked","(url)","<p>Select from a menu of available hooks and open using macOS `open`.\n"],["options","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-options","()",""],["output_array","HookApp","HookApp.html#method-i-output_array","(hooks_arr, opts)","<p>Output an array of hooks in the given format.\n"],["program_desc","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-program_desc","(desc)","<p>Gives you the program description\n"],["program_long_desc","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-program_long_desc","(desc)",""],["search_bookmarks","HookApp","HookApp.html#method-i-search_bookmarks","(search, opts)","<p>Search bookmarks, using both names and addresses unless options contain “:names_only”. Return …\n"],["search_name","HookApp","HookApp.html#method-i-search_name","(search)","<p>Search boomark names/titles. Return array of bookmark hashes.\n"],["search_path_or_address","HookApp","HookApp.html#method-i-search_path_or_address","(search)","<p>Search bookmark paths and addresses. Return array of bookmark hashes.\n"],["select_hook","HookApp","HookApp.html#method-i-select_hook","(marks)","<p>Generate a menu of available hooks for selecting one or more hooks to operate on. Revamped to use `fzf`, …\n"],["split_hook","String","String.html#method-i-split_hook","()",""],["split_hooks","String","String.html#method-i-split_hooks","()",""],["switch","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-switch","(name, aliases, desc, long_desc, negatable)","<p>Gives you a switch in the current context\n"],["valid_hook","String","String.html#method-i-valid_hook","()",""],["valid_hook!","String","String.html#method-i-valid_hook-21","()",""],["validate_format","HookApp","HookApp.html#method-i-validate_format","(fmt, options)","<p>Check if format fully matches or matches the first character of available options. Return full valid …\n"],["version","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-version","(version)","<p>Gives you the program version\n"],["README","","README_rdoc.html","","<p>hookapp\n<p>A CLI for Hook.app on macOS.\n<p>hook - CLI interface for Hook.app (macOS)\n"]]}}
|
1
|
+
var search_data = {"index":{"searchIndex":["app","gli","commands","doc","markdowndocumentlistener","hook","hookapp","hooker","string","all_bookmarks()","beginning()","bookmark_for()","bookmark_from_app()","cap()","cap!()","clip()","clip_bookmark()","clone_hooks()","command()","commands()","copy_bookmark()","decode()","default_command()","delete_all_hooks()","delete_hooks()","encode()","end_command()","end_commands()","end_options()","ending()","escape_quotes()","flag()","format_regex()","get_hooks()","link_all()","link_files()","linked_bookmarks()","new()","new()","nil_if_missing()","open_gui()","open_linked()","options()","output_array()","program_desc()","program_long_desc()","search_bookmarks()","search_name()","search_path_or_address()","select_hook()","split_hook()","split_hooks()","switch()","valid_hook()","valid_hook!()","validate_format()","version()","readme"],"longSearchIndex":["app","gli","gli::commands","gli::commands::doc","gli::commands::markdowndocumentlistener","hook","hookapp","hooker","string","hookapp#all_bookmarks()","gli::commands::markdowndocumentlistener#beginning()","hookapp#bookmark_for()","hookapp#bookmark_from_app()","string#cap()","string#cap!()","string#clip()","hookapp#clip_bookmark()","hookapp#clone_hooks()","gli::commands::markdowndocumentlistener#command()","gli::commands::markdowndocumentlistener#commands()","hookapp#copy_bookmark()","hookapp#decode()","gli::commands::markdowndocumentlistener#default_command()","hookapp#delete_all_hooks()","hookapp#delete_hooks()","hookapp#encode()","gli::commands::markdowndocumentlistener#end_command()","gli::commands::markdowndocumentlistener#end_commands()","gli::commands::markdowndocumentlistener#end_options()","gli::commands::markdowndocumentlistener#ending()","string#escape_quotes()","gli::commands::markdowndocumentlistener#flag()","hookapp#format_regex()","hookapp#get_hooks()","hookapp#link_all()","hookapp#link_files()","hookapp#linked_bookmarks()","gli::commands::markdowndocumentlistener::new()","hooker::new()","string#nil_if_missing()","hookapp#open_gui()","hookapp#open_linked()","gli::commands::markdowndocumentlistener#options()","hookapp#output_array()","gli::commands::markdowndocumentlistener#program_desc()","gli::commands::markdowndocumentlistener#program_long_desc()","hookapp#search_bookmarks()","hookapp#search_name()","hookapp#search_path_or_address()","hookapp#select_hook()","string#split_hook()","string#split_hooks()","gli::commands::markdowndocumentlistener#switch()","string#valid_hook()","string#valid_hook!()","hookapp#validate_format()","gli::commands::markdowndocumentlistener#version()",""],"info":[["App","","App.html","","<p>Main class for GLI app\n"],["GLI","","GLI.html","",""],["GLI::Commands","","GLI/Commands.html","",""],["GLI::Commands::Doc","","GLI/Commands/Doc.html","",""],["GLI::Commands::MarkdownDocumentListener","","GLI/Commands/MarkdownDocumentListener.html","","<p>DocumentListener class for GLI documentation generator\n"],["Hook","","Hook.html","",""],["HookApp","","HookApp.html","","<p>Hook.app functions\n"],["Hooker","","Hooker.html","","<p>Hook.app CLI interface\n"],["String","","String.html","","<p>String helpers\n"],["all_bookmarks","HookApp","HookApp.html#method-i-all_bookmarks","()","<p>Get all known bookmarks. Return array of bookmark hashes.\n"],["beginning","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-beginning","()",""],["bookmark_for","HookApp","HookApp.html#method-i-bookmark_for","(url)","<p>Get a Hook bookmark for file or URL. Return bookmark hash.\n"],["bookmark_from_app","HookApp","HookApp.html#method-i-bookmark_from_app","(app, opts)","<p>Get a bookmark from the foreground document of specified app.\n"],["cap","String","String.html#method-i-cap","()","<p>Capitalize only if no uppercase\n"],["cap!","String","String.html#method-i-cap-21","()",""],["clip","String","String.html#method-i-clip","()",""],["clip_bookmark","HookApp","HookApp.html#method-i-clip_bookmark","(url, opts)","<p>Create a bookmark for specified file/url and copy to the clipboard.\n"],["clone_hooks","HookApp","HookApp.html#method-i-clone_hooks","(args)","<p>Copy all hooks from source file to target file\n"],["command","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-command","(name, aliases, desc, long_desc, arg_name, arg_options)","<p>Gives you a command in the current context and creates a new context of this command\n"],["commands","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-commands","()",""],["copy_bookmark","HookApp","HookApp.html#method-i-copy_bookmark","(title, url, opts)","<p>Create a bookmark from specified title and url and copy to the clipboard.\n"],["decode","HookApp","HookApp.html#method-i-decode","(string)",""],["default_command","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-default_command","(name)","<p>Gives you the name of the current command in the current context\n"],["delete_all_hooks","HookApp","HookApp.html#method-i-delete_all_hooks","(url, force: false)","<p>Delete all hooked files/urls from target file\n"],["delete_hooks","HookApp","HookApp.html#method-i-delete_hooks","(args, opts)","<p>Delete hooks between two files/urls\n"],["encode","HookApp","HookApp.html#method-i-encode","(string)",""],["end_command","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-end_command","(_name)","<p>Ends a command, and “pops” you back up one context\n"],["end_commands","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-end_commands","()",""],["end_options","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-end_options","()",""],["ending","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-ending","()","<p>Called when processing has completed\n"],["escape_quotes","String","String.html#method-i-escape_quotes","()",""],["flag","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-flag","(name, aliases, desc, long_desc, default_value, arg_name, must_match, _type)","<p>Gives you a flag in the current context\n"],["format_regex","HookApp","HookApp.html#method-i-format_regex","(options)","<p>Create a single regex for validation of an array by first char or full match.\n"],["get_hooks","HookApp","HookApp.html#method-i-get_hooks","(url)","<p>Get bookmarks hooked to file or URL. Return array of bookmark hashes.\n"],["link_all","HookApp","HookApp.html#method-i-link_all","(args)","<p>Create bi-directional links between every file/url in the list of arguments\n"],["link_files","HookApp","HookApp.html#method-i-link_files","(args)","<p>Link 2 or more files/urls with bi-directional hooks.\n"],["linked_bookmarks","HookApp","HookApp.html#method-i-linked_bookmarks","(args, opts)","<p>Get a list of all hooks on a file/url.\n"],["new","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-c-new","(_global_options, _options, _arguments, app)",""],["new","Hooker","Hooker.html#method-c-new","()",""],["nil_if_missing","String","String.html#method-i-nil_if_missing","()",""],["open_gui","HookApp","HookApp.html#method-i-open_gui","(url)","<p>Open the Hook GUI for browsing/performing actions on a file or url\n"],["open_linked","HookApp","HookApp.html#method-i-open_linked","(url)","<p>Select from a menu of available hooks and open using macOS `open`.\n"],["options","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-options","()",""],["output_array","HookApp","HookApp.html#method-i-output_array","(hooks_arr, opts)","<p>Output an array of hooks in the given format.\n"],["program_desc","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-program_desc","(desc)","<p>Gives you the program description\n"],["program_long_desc","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-program_long_desc","(desc)",""],["search_bookmarks","HookApp","HookApp.html#method-i-search_bookmarks","(search, opts)","<p>Search bookmarks, using both names and addresses unless options contain “:names_only”. Return …\n"],["search_name","HookApp","HookApp.html#method-i-search_name","(search)","<p>Search boomark names/titles. Return array of bookmark hashes.\n"],["search_path_or_address","HookApp","HookApp.html#method-i-search_path_or_address","(search)","<p>Search bookmark paths and addresses. Return array of bookmark hashes.\n"],["select_hook","HookApp","HookApp.html#method-i-select_hook","(marks)","<p>Generate a menu of available hooks for selecting one or more hooks to operate on. Revamped to use `fzf`, …\n"],["split_hook","String","String.html#method-i-split_hook","()",""],["split_hooks","String","String.html#method-i-split_hooks","()",""],["switch","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-switch","(name, aliases, desc, long_desc, negatable)","<p>Gives you a switch in the current context\n"],["valid_hook","String","String.html#method-i-valid_hook","()",""],["valid_hook!","String","String.html#method-i-valid_hook-21","()",""],["validate_format","HookApp","HookApp.html#method-i-validate_format","(fmt, options)","<p>Check if format fully matches or matches the first character of available options. Return full valid …\n"],["version","GLI::Commands::MarkdownDocumentListener","GLI/Commands/MarkdownDocumentListener.html#method-i-version","(version)","<p>Gives you the program version\n"],["README","","README_rdoc.html","","<p>hookapp\n<p>A CLI for Hook.app on macOS.\n<p>hook - CLI interface for Hook.app (macOS)\n"]]}}
|
data/html/js/search_index.js.gz
CHANGED
Binary file
|
data/html/js/searcher.js.gz
CHANGED
Binary file
|
data/html/table_of_contents.html
CHANGED
@@ -21,162 +21,104 @@
|
|
21
21
|
<link href="./css/rdoc.css" rel="stylesheet">
|
22
22
|
|
23
23
|
|
24
|
-
|
25
|
-
|
26
24
|
<body id="top" class="table-of-contents">
|
27
25
|
<main role="main">
|
28
26
|
<h1 class="class">Table of Contents - hookapp</h1>
|
29
27
|
|
30
|
-
|
31
|
-
|
32
28
|
<h2 id="pages">Pages</h2>
|
33
29
|
<ul>
|
34
|
-
|
35
30
|
<li class="file">
|
36
31
|
<a href="README_rdoc.html">README</a>
|
37
32
|
|
38
33
|
<ul>
|
39
|
-
|
40
34
|
<li><a href="README_rdoc.html#label-hookapp">hookapp</a>
|
41
|
-
|
42
35
|
<li><a href="README_rdoc.html#label-hook+-+CLI+interface+for+Hook.app+-28macOS-29">hook - CLI interface for Hook.app (macOS)</a>
|
43
|
-
|
44
36
|
<li><a href="README_rdoc.html#label-Global+Options">Global Options</a>
|
45
|
-
|
46
37
|
<li><a href="README_rdoc.html#label--help">–help</a>
|
47
|
-
|
48
38
|
<li><a href="README_rdoc.html#label--version">–version</a>
|
49
|
-
|
50
39
|
<li><a href="README_rdoc.html#label-Commands">Commands</a>
|
51
|
-
|
52
40
|
<li><a href="README_rdoc.html#label-Command-3A+clip-7Ccp++FILE_OR_URL">Command: <code>clip|cp FILE_OR_URL</code></a>
|
53
|
-
|
54
41
|
<li><a href="README_rdoc.html#label-Options">Options</a>
|
55
|
-
|
56
42
|
<li><a href="README_rdoc.html#label-a-7C--app+APP_NAME">-a|–app APP_NAME</a>
|
57
|
-
|
58
43
|
<li><a href="README_rdoc.html#label-m-7C--markdown">-m|–markdown</a>
|
59
|
-
|
60
44
|
<li><a href="README_rdoc.html#label-Command-3A+clone++SOURCE+TARGET">Command: <code>clone SOURCE TARGET</code></a>
|
61
|
-
|
62
|
-
<li><a href="README_rdoc.html#label-Command-3A+find-7Csearch++SEARCH_STRING">Command: <code>find|search SEARCH_STRING</code></a>
|
63
|
-
|
45
|
+
<li><a href="README_rdoc.html#label-Command-3A+find-7Csearch++-5BSEARCH_STRING-5D">Command: <code>find|search [SEARCH_STRING]</code></a>
|
64
46
|
<li><a href="README_rdoc.html#label-Options">Options</a>
|
65
|
-
|
66
|
-
<li><a href="README_rdoc.html#label-o-7C--output_format+format">-o|–output_format format</a>
|
67
|
-
|
47
|
+
<li><a href="README_rdoc.html#label-o-7C--output_format+FORMAT">-o|–output_format FORMAT</a>
|
68
48
|
<li><a href="README_rdoc.html#label-f-7C--files_only">-f|–files_only</a>
|
69
|
-
|
70
49
|
<li><a href="README_rdoc.html#label-n-7C--names_only">-n|–names_only</a>
|
71
|
-
|
72
50
|
<li><a href="README_rdoc.html#label--null">–null</a>
|
73
|
-
|
74
51
|
<li><a href="README_rdoc.html#label-Command-3A+from++APPLICATION_NAME">Command: <code>from APPLICATION_NAME</code></a>
|
75
|
-
|
76
52
|
<li><a href="README_rdoc.html#label-Options">Options</a>
|
77
|
-
|
78
53
|
<li><a href="README_rdoc.html#label-c-7C--copy">-c|–copy</a>
|
79
|
-
|
80
54
|
<li><a href="README_rdoc.html#label-m-7C--markdown">-m|–markdown</a>
|
81
|
-
|
82
55
|
<li><a href="README_rdoc.html#label-Command-3A+help++command">Command: <code>help command</code></a>
|
83
|
-
|
84
56
|
<li><a href="README_rdoc.html#label-Options">Options</a>
|
85
|
-
|
86
57
|
<li><a href="README_rdoc.html#label-c">-c</a>
|
87
|
-
|
88
|
-
<li><a href="README_rdoc.html#label-Command-3A+link-7Cln++SOURCE+-5BSOURCE...-5D+TARGET">Command: <code>link|ln SOURCE [SOURCE...] TARGET</code></a>
|
89
|
-
|
58
|
+
<li><a href="README_rdoc.html#label-Command-3A+link-7Cln++SOURCE...+TARGET">Command: <code>link|ln SOURCE... TARGET</code></a>
|
90
59
|
<li><a href="README_rdoc.html#label-Options">Options</a>
|
91
|
-
|
92
60
|
<li><a href="README_rdoc.html#label-a-7C--all">-a|–all</a>
|
93
|
-
|
94
61
|
<li><a href="README_rdoc.html#label-p-7C--paste">-p|–paste</a>
|
95
|
-
|
96
|
-
<li><a href="README_rdoc.html#label-Command-3A+list-7Cls++FILE_OR_URL+-5BFILE_OR_URL...-5D">Command: <code>list|ls FILE_OR_URL [FILE_OR_URL...]</code></a>
|
97
|
-
|
62
|
+
<li><a href="README_rdoc.html#label-Command-3A+list-7Cls++-5BFILE_OR_URL-5D...">Command: <code>list|ls [FILE_OR_URL]...</code></a>
|
98
63
|
<li><a href="README_rdoc.html#label-Options">Options</a>
|
99
|
-
|
100
|
-
<li><a href="README_rdoc.html#label-o-7C--output_format+format">-o|–output_format format</a>
|
101
|
-
|
64
|
+
<li><a href="README_rdoc.html#label-o-7C--output_format+FORMAT">-o|–output_format FORMAT</a>
|
102
65
|
<li><a href="README_rdoc.html#label-f-7C--files_only">-f|–files_only</a>
|
103
|
-
|
104
66
|
<li><a href="README_rdoc.html#label--null">–null</a>
|
105
|
-
|
106
67
|
<li><a href="README_rdoc.html#label-s-7C--select">-<a href="no-">s|–</a>select</a>
|
107
|
-
|
108
68
|
<li><a href="README_rdoc.html#label-Command-3A+open-7Cgui++FILE_OR_URL">Command: <code>open|gui FILE_OR_URL</code></a>
|
109
|
-
|
110
|
-
<li><a href="README_rdoc.html#label-
|
111
|
-
|
69
|
+
<li><a href="README_rdoc.html#label-Command-3A+percent++STRING">Command: <code>percent STRING</code></a>
|
70
|
+
<li><a href="README_rdoc.html#label-Commands">Commands</a>
|
71
|
+
<li><a href="README_rdoc.html#label-Command-3A+decode++STRING">Command: <code>decode STRING</code></a>
|
72
|
+
<li><a href="README_rdoc.html#label-Command-3A+encode++STRING">Command: <code>encode STRING</code></a>
|
73
|
+
<li><a href="README_rdoc.html#label-Command-3A+remove-7Crm++FILE_OR_URL...">Command: <code>remove|rm FILE_OR_URL...</code></a>
|
112
74
|
<li><a href="README_rdoc.html#label-Options">Options</a>
|
113
|
-
|
114
75
|
<li><a href="README_rdoc.html#label-a-7C--all">-a|–all</a>
|
115
|
-
|
76
|
+
<li><a href="README_rdoc.html#label-f-7C--force">-f|–force</a>
|
116
77
|
<li><a href="README_rdoc.html#label-Command-3A+scripts++SHELL">Command: <code>scripts SHELL</code></a>
|
117
|
-
|
118
78
|
<li><a href="README_rdoc.html#label-Command-3A+select++FILE_OR_URL">Command: <code>select FILE_OR_URL</code></a>
|
119
|
-
|
120
79
|
</ul>
|
121
|
-
|
122
80
|
</li>
|
123
|
-
|
124
81
|
</ul>
|
125
82
|
|
126
|
-
|
127
83
|
<h2 id="classes">Classes and Modules</h2>
|
128
84
|
<ul>
|
129
|
-
|
130
85
|
<li class="class">
|
131
86
|
<a href="App.html">App</a>
|
132
|
-
|
133
87
|
</li>
|
134
|
-
|
135
88
|
<li class="module">
|
136
89
|
<a href="GLI.html">GLI</a>
|
137
|
-
|
138
90
|
</li>
|
139
|
-
|
140
91
|
<li class="module">
|
141
92
|
<a href="GLI/Commands.html">GLI::Commands</a>
|
142
|
-
|
143
93
|
</li>
|
144
|
-
|
145
94
|
<li class="module">
|
146
95
|
<a href="GLI/Commands/Doc.html">GLI::Commands::Doc</a>
|
147
|
-
|
148
96
|
</li>
|
149
|
-
|
150
97
|
<li class="class">
|
151
98
|
<a href="GLI/Commands/MarkdownDocumentListener.html">GLI::Commands::MarkdownDocumentListener</a>
|
152
|
-
|
153
99
|
</li>
|
154
|
-
|
155
100
|
<li class="module">
|
156
101
|
<a href="Hook.html">Hook</a>
|
157
|
-
|
158
102
|
</li>
|
159
|
-
|
160
|
-
<li class="module">
|
103
|
+
<li class="class">
|
161
104
|
<a href="HookApp.html">HookApp</a>
|
162
|
-
|
163
105
|
</li>
|
164
|
-
|
165
106
|
<li class="class">
|
166
107
|
<a href="Hooker.html">Hooker</a>
|
167
|
-
|
168
108
|
</li>
|
169
|
-
|
170
109
|
<li class="class">
|
171
110
|
<a href="String.html">String</a>
|
172
|
-
|
173
111
|
</li>
|
174
|
-
|
175
112
|
</ul>
|
176
113
|
|
177
114
|
<h2 id="methods">Methods</h2>
|
178
115
|
<ul>
|
179
116
|
|
117
|
+
<li class="method">
|
118
|
+
<a href="Hooker.html#method-c-new">::new</a>
|
119
|
+
—
|
120
|
+
<span class="container">Hooker</span>
|
121
|
+
|
180
122
|
<li class="method">
|
181
123
|
<a href="GLI/Commands/MarkdownDocumentListener.html#method-c-new">::new</a>
|
182
124
|
—
|
@@ -242,6 +184,11 @@
|
|
242
184
|
—
|
243
185
|
<span class="container">HookApp</span>
|
244
186
|
|
187
|
+
<li class="method">
|
188
|
+
<a href="HookApp.html#method-i-decode">#decode</a>
|
189
|
+
—
|
190
|
+
<span class="container">HookApp</span>
|
191
|
+
|
245
192
|
<li class="method">
|
246
193
|
<a href="GLI/Commands/MarkdownDocumentListener.html#method-i-default_command">#default_command</a>
|
247
194
|
—
|
@@ -257,6 +204,11 @@
|
|
257
204
|
—
|
258
205
|
<span class="container">HookApp</span>
|
259
206
|
|
207
|
+
<li class="method">
|
208
|
+
<a href="HookApp.html#method-i-encode">#encode</a>
|
209
|
+
—
|
210
|
+
<span class="container">HookApp</span>
|
211
|
+
|
260
212
|
<li class="method">
|
261
213
|
<a href="GLI/Commands/MarkdownDocumentListener.html#method-i-end_command">#end_command</a>
|
262
214
|
—
|
@@ -277,6 +229,11 @@
|
|
277
229
|
—
|
278
230
|
<span class="container">GLI::Commands::MarkdownDocumentListener</span>
|
279
231
|
|
232
|
+
<li class="method">
|
233
|
+
<a href="String.html#method-i-escape_quotes">#escape_quotes</a>
|
234
|
+
—
|
235
|
+
<span class="container">String</span>
|
236
|
+
|
280
237
|
<li class="method">
|
281
238
|
<a href="GLI/Commands/MarkdownDocumentListener.html#method-i-flag">#flag</a>
|
282
239
|
—
|
@@ -396,14 +353,13 @@
|
|
396
353
|
<a href="GLI/Commands/MarkdownDocumentListener.html#method-i-version">#version</a>
|
397
354
|
—
|
398
355
|
<span class="container">GLI::Commands::MarkdownDocumentListener</span>
|
399
|
-
|
400
356
|
</ul>
|
401
357
|
</main>
|
402
358
|
|
403
359
|
|
404
360
|
<footer id="validator-badges" role="contentinfo">
|
405
361
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
406
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.
|
362
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.2.
|
407
363
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
408
364
|
</footer>
|
409
365
|
|
data/lib/helpers/fuzzyfilefinder
CHANGED
Binary file
|