standup_md 0.3.6 → 0.3.7
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/Gemfile.lock +1 -1
- data/README.md +6 -9
- data/doc/README_md.html +7 -13
- data/doc/StandupMD.html +5 -79
- data/doc/StandupMD/Cli.html +10 -152
- data/doc/StandupMD/Cli/Helpers.html +5 -27
- data/doc/StandupMD/Config.html +7 -44
- data/doc/StandupMD/Config/Cli.html +8 -76
- data/doc/StandupMD/Config/Entry.html +8 -64
- data/doc/StandupMD/Config/EntryList.html +7 -48
- data/doc/StandupMD/Config/File.html +8 -140
- data/doc/StandupMD/Entry.html +10 -119
- data/doc/StandupMD/EntryList.html +16 -198
- data/doc/StandupMD/File.html +31 -165
- data/doc/StandupMD/Version.html +5 -38
- data/doc/created.rid +4 -4
- data/doc/css/rdoc.css +1 -1
- data/doc/index.html +7 -28
- data/doc/js/navigation.js.gz +0 -0
- data/doc/js/search_index.js.gz +0 -0
- data/doc/js/searcher.js.gz +0 -0
- data/doc/table_of_contents.html +1 -62
- data/lib/standup_md/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 672cba78862ca57f72b840a1d8062f15bd3c17efc8fdb27bd12d227ef5f36d49
|
|
4
|
+
data.tar.gz: ea553eb97f65ecd00214aac2fe272c247d7f4291ca230d68b5111bea0b24b6bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01a30468e6989cca9b63648b1222ed2c92524c5dcb79a0a0340d7844b428288a35758d6f2e58067cf68574a2ae323afa50a9fa79b0568a0c9bc5725e1dfee1a7
|
|
7
|
+
data.tar.gz: 66fc66e7fff2bc7fafd1085fd0f248556577ea89f16c9f2b324b246cf40b79545fe481764e06d518e3fb788af6fe51c2379ca7f0eebdc61ff80bacf14de1b48f
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -273,9 +273,9 @@ end
|
|
|
273
273
|
The API is fully documented in the
|
|
274
274
|
[RDoc Documentation](https://evanthegrayt.github.io/standup_md/doc/index.html).
|
|
275
275
|
|
|
276
|
-
This was mainly written as a command line utility, but the API is
|
|
277
|
-
|
|
278
|
-
|
|
276
|
+
This was mainly written as a command line utility, but the API is very robust,
|
|
277
|
+
and is available for use in your own projects. A quick example of how to write a
|
|
278
|
+
new entry via code could look like the following:
|
|
279
279
|
|
|
280
280
|
### API Examples
|
|
281
281
|
#### Adding an entry for today
|
|
@@ -320,16 +320,13 @@ While there's no official support for vim, you can add this to your `vimrc`
|
|
|
320
320
|
file, or something like `~/.vim/plugin/standup.vim`.
|
|
321
321
|
|
|
322
322
|
```vim
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
\ call s:OpenStandupFile(<bang>0, <f-args>)
|
|
326
|
-
endif
|
|
323
|
+
command! -complete=custom,<SID>StandupCompletion -nargs=? -bang Standup
|
|
324
|
+
\ call s:OpenStandupFile(<bang>0, <f-args>)
|
|
327
325
|
|
|
328
326
|
function! s:StandupCompletion(...) abort
|
|
329
327
|
let l:dir = get(g:, 'standup_dir', $HOME . '/.cache/standup_md') . '/'
|
|
330
328
|
if !isdirectory(l:dir) | return '' | endif
|
|
331
|
-
|
|
332
|
-
return join(map(l:list, "substitute(v:val, l:dir, '', '')"), "\n")
|
|
329
|
+
return join(map(glob(l:dir . '*.md', 0, 1), "fnamemodify(v:val, ':t')"), "\n")
|
|
333
330
|
endfunction
|
|
334
331
|
|
|
335
332
|
function! s:OpenStandupFile(split, ...)
|
data/doc/README_md.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">
|
|
@@ -88,13 +86,12 @@
|
|
|
88
86
|
|
|
89
87
|
|
|
90
88
|
<div id="project-metadata">
|
|
91
|
-
|
|
89
|
+
|
|
90
|
+
<div id="fileindex-section" class="nav-section">
|
|
92
91
|
<h3>Pages</h3>
|
|
93
92
|
|
|
94
93
|
<ul class="link-list">
|
|
95
|
-
|
|
96
94
|
<li><a href="./README_md.html">README</a>
|
|
97
|
-
|
|
98
95
|
</ul>
|
|
99
96
|
</div>
|
|
100
97
|
|
|
@@ -319,7 +316,7 @@ rake install</pre>
|
|
|
319
316
|
|
|
320
317
|
<p>The API is fully documented in the <a href="https://evanthegrayt.github.io/standup_md/doc/index.html">RDoc Documentation</a>.</p>
|
|
321
318
|
|
|
322
|
-
<p>This was mainly written as a command line utility, but the API is
|
|
319
|
+
<p>This was mainly written as a command line utility, but the API is very robust, and is available for use in your own projects. A quick example of how to write a new entry via code could look like the following:</p>
|
|
323
320
|
|
|
324
321
|
<h3 id="label-API+Examples">API Examples<span><a href="#label-API+Examples">¶</a> <a href="#top">↑</a></span></h3>
|
|
325
322
|
|
|
@@ -362,16 +359,13 @@ rake install</pre>
|
|
|
362
359
|
|
|
363
360
|
<p>While there's no official support for vim, you can add this to your <code>vimrc</code> file, or something like <code>~/.vim/plugin/standup.vim</code>.</p>
|
|
364
361
|
|
|
365
|
-
<pre>
|
|
366
|
-
|
|
367
|
-
\ call s:OpenStandupFile(<bang>0, <f-args>)
|
|
368
|
-
endif
|
|
362
|
+
<pre>command! -complete=custom,<SID>StandupCompletion -nargs=? -bang Standup
|
|
363
|
+
\ call s:OpenStandupFile(<bang>0, <f-args>)
|
|
369
364
|
|
|
370
365
|
function! s:StandupCompletion(...) abort
|
|
371
366
|
let l:dir = get(g:, 'standup_dir', $HOME . '/.cache/standup_md') . '/'
|
|
372
367
|
if !isdirectory(l:dir) | return '' | endif
|
|
373
|
-
|
|
374
|
-
return join(map(l:list, "substitute(v:val, l:dir, '', '')"), "\n")
|
|
368
|
+
return join(map(glob(l:dir . '*.md', 0, 1), "fnamemodify(v:val, ':t')"), "\n")
|
|
375
369
|
endfunction
|
|
376
370
|
|
|
377
371
|
function! s:OpenStandupFile(split, ...)
|
|
@@ -400,7 +394,7 @@ g:standup_file = strftime('%Y_%m.md') " the file format to u
|
|
|
400
394
|
|
|
401
395
|
<footer id="validator-badges" role="contentinfo">
|
|
402
396
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
|
403
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
|
397
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
|
|
404
398
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
|
405
399
|
</footer>
|
|
406
400
|
|
data/doc/StandupMD.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="module">
|
|
27
25
|
<nav role="navigation">
|
|
28
26
|
<div id="project-navigation">
|
|
@@ -62,22 +60,17 @@
|
|
|
62
60
|
|
|
63
61
|
|
|
64
62
|
|
|
65
|
-
|
|
63
|
+
|
|
64
|
+
<!-- Method Quickref -->
|
|
66
65
|
<div id="method-list-section" class="nav-section">
|
|
67
66
|
<h3>Methods</h3>
|
|
68
67
|
|
|
69
68
|
<ul class="link-list" role="directory">
|
|
70
|
-
|
|
71
69
|
<li ><a href="#method-c-config">::config</a>
|
|
72
|
-
|
|
73
70
|
<li ><a href="#method-c-config_file_loaded-3F">::config_file_loaded?</a>
|
|
74
|
-
|
|
75
71
|
<li ><a href="#method-c-configure">::configure</a>
|
|
76
|
-
|
|
77
72
|
<li ><a href="#method-c-load_config_file">::load_config_file</a>
|
|
78
|
-
|
|
79
73
|
<li ><a href="#method-c-reset_config">::reset_config</a>
|
|
80
|
-
|
|
81
74
|
</ul>
|
|
82
75
|
</div>
|
|
83
76
|
|
|
@@ -95,151 +88,101 @@
|
|
|
95
88
|
|
|
96
89
|
</section>
|
|
97
90
|
|
|
98
|
-
|
|
99
91
|
<section id="5Buntitled-5D" class="documentation-section">
|
|
100
|
-
|
|
101
92
|
|
|
102
|
-
|
|
103
93
|
|
|
104
|
-
|
|
105
94
|
|
|
106
|
-
|
|
107
95
|
|
|
108
|
-
|
|
96
|
+
|
|
109
97
|
<section id="public-class-5Buntitled-5D-method-details" class="method-section">
|
|
110
98
|
<header>
|
|
111
99
|
<h3>Public Class Methods</h3>
|
|
112
100
|
</header>
|
|
113
101
|
|
|
114
|
-
|
|
115
102
|
<div id="method-c-config" class="method-detail ">
|
|
116
|
-
|
|
117
103
|
<div class="method-heading">
|
|
118
104
|
<span class="method-name">config</span><span
|
|
119
105
|
class="method-args">()</span>
|
|
120
|
-
|
|
121
106
|
<span class="method-click-advice">click to toggle source</span>
|
|
122
|
-
|
|
123
107
|
</div>
|
|
124
|
-
|
|
125
108
|
|
|
126
109
|
<div class="method-description">
|
|
127
|
-
|
|
128
110
|
<p>Method for accessing the configuration.</p>
|
|
129
111
|
|
|
130
112
|
<p>@return [StanupMD::Cli]</p>
|
|
131
|
-
|
|
132
|
-
|
|
133
113
|
|
|
134
|
-
|
|
135
114
|
<div class="method-source-code" id="config-source">
|
|
136
115
|
<pre><span class="ruby-comment"># File lib/standup_md.rb, line 19</span>
|
|
137
116
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier ruby-title">config</span>
|
|
138
117
|
<span class="ruby-ivar">@config</span> <span class="ruby-operator">||=</span> <span class="ruby-constant">StandupMD</span><span class="ruby-operator">::</span><span class="ruby-constant">Config</span>.<span class="ruby-identifier">new</span>
|
|
139
118
|
<span class="ruby-keyword">end</span></pre>
|
|
140
119
|
</div>
|
|
141
|
-
|
|
142
120
|
</div>
|
|
143
121
|
|
|
144
|
-
|
|
145
122
|
|
|
146
|
-
|
|
147
123
|
</div>
|
|
148
124
|
|
|
149
|
-
|
|
150
125
|
<div id="method-c-config_file_loaded-3F" class="method-detail ">
|
|
151
|
-
|
|
152
126
|
<div class="method-heading">
|
|
153
127
|
<span class="method-name">config_file_loaded?</span><span
|
|
154
128
|
class="method-args">()</span>
|
|
155
|
-
|
|
156
129
|
<span class="method-click-advice">click to toggle source</span>
|
|
157
|
-
|
|
158
130
|
</div>
|
|
159
|
-
|
|
160
131
|
|
|
161
132
|
<div class="method-description">
|
|
162
|
-
|
|
163
133
|
<p>Has a config file been loaded?</p>
|
|
164
134
|
|
|
165
135
|
<p>@return [Boolean]</p>
|
|
166
|
-
|
|
167
|
-
|
|
168
136
|
|
|
169
|
-
|
|
170
137
|
<div class="method-source-code" id="config_file_loaded-3F-source">
|
|
171
138
|
<pre><span class="ruby-comment"># File lib/standup_md.rb, line 44</span>
|
|
172
139
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier ruby-title">config_file_loaded?</span>
|
|
173
140
|
<span class="ruby-ivar">@config_file_loaded</span>
|
|
174
141
|
<span class="ruby-keyword">end</span></pre>
|
|
175
142
|
</div>
|
|
176
|
-
|
|
177
143
|
</div>
|
|
178
144
|
|
|
179
|
-
|
|
180
145
|
|
|
181
|
-
|
|
182
146
|
</div>
|
|
183
147
|
|
|
184
|
-
|
|
185
148
|
<div id="method-c-configure" class="method-detail ">
|
|
186
|
-
|
|
187
149
|
<div class="method-heading">
|
|
188
150
|
<span class="method-name">configure</span><span
|
|
189
151
|
class="method-args">() { |config| ... }</span>
|
|
190
|
-
|
|
191
152
|
<span class="method-click-advice">click to toggle source</span>
|
|
192
|
-
|
|
193
153
|
</div>
|
|
194
|
-
|
|
195
154
|
|
|
196
155
|
<div class="method-description">
|
|
197
|
-
|
|
198
156
|
<p>Allows for configuration via a block. Useful when making config files.</p>
|
|
199
157
|
|
|
200
158
|
<p>@example</p>
|
|
201
159
|
|
|
202
160
|
<pre class="ruby"><span class="ruby-constant">StandupMD</span>.<span class="ruby-identifier">configure</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">s</span><span class="ruby-operator">|</span> <span class="ruby-identifier">s</span>.<span class="ruby-identifier">cli</span>.<span class="ruby-identifier">editor</span> = <span class="ruby-string">'mate'</span> }
|
|
203
161
|
</pre>
|
|
204
|
-
|
|
205
|
-
|
|
206
162
|
|
|
207
|
-
|
|
208
163
|
<div class="method-source-code" id="configure-source">
|
|
209
164
|
<pre><span class="ruby-comment"># File lib/standup_md.rb, line 36</span>
|
|
210
165
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier ruby-title">configure</span>
|
|
211
166
|
<span class="ruby-keyword">yield</span> <span class="ruby-identifier">config</span>
|
|
212
167
|
<span class="ruby-keyword">end</span></pre>
|
|
213
168
|
</div>
|
|
214
|
-
|
|
215
169
|
</div>
|
|
216
170
|
|
|
217
|
-
|
|
218
171
|
|
|
219
|
-
|
|
220
172
|
</div>
|
|
221
173
|
|
|
222
|
-
|
|
223
174
|
<div id="method-c-load_config_file" class="method-detail ">
|
|
224
|
-
|
|
225
175
|
<div class="method-heading">
|
|
226
176
|
<span class="method-name">load_config_file</span><span
|
|
227
177
|
class="method-args">(file)</span>
|
|
228
|
-
|
|
229
178
|
<span class="method-click-advice">click to toggle source</span>
|
|
230
|
-
|
|
231
179
|
</div>
|
|
232
|
-
|
|
233
180
|
|
|
234
181
|
<div class="method-description">
|
|
235
|
-
|
|
236
182
|
<p>Loads a config file.</p>
|
|
237
183
|
|
|
238
184
|
<p>@param [String] file</p>
|
|
239
|
-
|
|
240
|
-
|
|
241
185
|
|
|
242
|
-
|
|
243
186
|
<div class="method-source-code" id="load_config_file-source">
|
|
244
187
|
<pre><span class="ruby-comment"># File lib/standup_md.rb, line 52</span>
|
|
245
188
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier ruby-title">load_config_file</span>(<span class="ruby-identifier">file</span>)
|
|
@@ -250,60 +193,43 @@
|
|
|
250
193
|
<span class="ruby-identifier">load</span> <span class="ruby-identifier">file</span>
|
|
251
194
|
<span class="ruby-keyword">end</span></pre>
|
|
252
195
|
</div>
|
|
253
|
-
|
|
254
196
|
</div>
|
|
255
197
|
|
|
256
|
-
|
|
257
198
|
|
|
258
|
-
|
|
259
199
|
</div>
|
|
260
200
|
|
|
261
|
-
|
|
262
201
|
<div id="method-c-reset_config" class="method-detail ">
|
|
263
|
-
|
|
264
202
|
<div class="method-heading">
|
|
265
203
|
<span class="method-name">reset_config</span><span
|
|
266
204
|
class="method-args">()</span>
|
|
267
|
-
|
|
268
205
|
<span class="method-click-advice">click to toggle source</span>
|
|
269
|
-
|
|
270
206
|
</div>
|
|
271
|
-
|
|
272
207
|
|
|
273
208
|
<div class="method-description">
|
|
274
|
-
|
|
275
209
|
<p>Reset all configuration values to their defaults.</p>
|
|
276
210
|
|
|
277
211
|
<p>@return [StandupMD::Config]</p>
|
|
278
|
-
|
|
279
|
-
|
|
280
212
|
|
|
281
|
-
|
|
282
213
|
<div class="method-source-code" id="reset_config-source">
|
|
283
214
|
<pre><span class="ruby-comment"># File lib/standup_md.rb, line 27</span>
|
|
284
215
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier ruby-title">reset_config</span>
|
|
285
216
|
<span class="ruby-ivar">@config</span> = <span class="ruby-constant">StandupMD</span><span class="ruby-operator">::</span><span class="ruby-constant">Config</span>.<span class="ruby-identifier">new</span>
|
|
286
217
|
<span class="ruby-keyword">end</span></pre>
|
|
287
218
|
</div>
|
|
288
|
-
|
|
289
219
|
</div>
|
|
290
220
|
|
|
291
|
-
|
|
292
221
|
|
|
293
|
-
|
|
294
222
|
</div>
|
|
295
223
|
|
|
296
|
-
|
|
297
224
|
</section>
|
|
298
|
-
|
|
299
|
-
</section>
|
|
300
225
|
|
|
226
|
+
</section>
|
|
301
227
|
</main>
|
|
302
228
|
|
|
303
229
|
|
|
304
230
|
<footer id="validator-badges" role="contentinfo">
|
|
305
231
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
|
306
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
|
232
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
|
|
307
233
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
|
308
234
|
</footer>
|
|
309
235
|
|
data/doc/StandupMD/Cli.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="class">
|
|
27
25
|
<nav role="navigation">
|
|
28
26
|
<div id="project-navigation">
|
|
@@ -59,51 +57,38 @@
|
|
|
59
57
|
|
|
60
58
|
<div id="class-metadata">
|
|
61
59
|
|
|
62
|
-
|
|
60
|
+
|
|
61
|
+
<div id="parent-class-section" class="nav-section">
|
|
63
62
|
<h3>Parent</h3>
|
|
64
63
|
|
|
65
|
-
|
|
66
64
|
<p class="link">Object
|
|
67
|
-
|
|
68
65
|
</div>
|
|
69
66
|
|
|
70
|
-
|
|
67
|
+
|
|
68
|
+
<div id="includes-section" class="nav-section">
|
|
71
69
|
<h3>Included Modules</h3>
|
|
72
70
|
|
|
73
71
|
<ul class="link-list">
|
|
74
|
-
|
|
75
|
-
|
|
76
72
|
<li><a class="include" href="Cli/Helpers.html">StandupMD::Cli::Helpers</a>
|
|
77
|
-
|
|
78
|
-
|
|
79
73
|
</ul>
|
|
80
74
|
</div>
|
|
81
75
|
|
|
82
76
|
|
|
83
|
-
|
|
77
|
+
|
|
78
|
+
<!-- Method Quickref -->
|
|
84
79
|
<div id="method-list-section" class="nav-section">
|
|
85
80
|
<h3>Methods</h3>
|
|
86
81
|
|
|
87
82
|
<ul class="link-list" role="directory">
|
|
88
|
-
|
|
89
83
|
<li ><a href="#method-c-config">::config</a>
|
|
90
|
-
|
|
91
84
|
<li ><a href="#method-c-echo">::echo</a>
|
|
92
|
-
|
|
93
85
|
<li ><a href="#method-c-execute">::execute</a>
|
|
94
|
-
|
|
95
86
|
<li ><a href="#method-c-new">::new</a>
|
|
96
|
-
|
|
97
87
|
<li ><a href="#method-i-echo">#echo</a>
|
|
98
|
-
|
|
99
88
|
<li ><a href="#method-i-edit">#edit</a>
|
|
100
|
-
|
|
101
89
|
<li ><a href="#method-i-load_preferences">#load_preferences</a>
|
|
102
|
-
|
|
103
90
|
<li ><a href="#method-i-preference_file_loaded-3F">#preference_file_loaded?</a>
|
|
104
|
-
|
|
105
91
|
<li ><a href="#method-i-write_file">#write_file</a>
|
|
106
|
-
|
|
107
92
|
</ul>
|
|
108
93
|
</div>
|
|
109
94
|
|
|
@@ -121,21 +106,15 @@
|
|
|
121
106
|
|
|
122
107
|
</section>
|
|
123
108
|
|
|
124
|
-
|
|
125
109
|
<section id="5Buntitled-5D" class="documentation-section">
|
|
126
|
-
|
|
127
110
|
|
|
128
|
-
|
|
129
111
|
|
|
130
|
-
|
|
131
112
|
|
|
132
|
-
|
|
133
113
|
<section class="attribute-method-details" class="method-section">
|
|
134
114
|
<header>
|
|
135
115
|
<h3>Attributes</h3>
|
|
136
116
|
</header>
|
|
137
117
|
|
|
138
|
-
|
|
139
118
|
<div id="attribute-i-entry" class="method-detail">
|
|
140
119
|
<div class="method-heading attribute-method-heading">
|
|
141
120
|
<span class="method-name">entry</span><span
|
|
@@ -143,14 +122,11 @@
|
|
|
143
122
|
</div>
|
|
144
123
|
|
|
145
124
|
<div class="method-description">
|
|
146
|
-
|
|
147
125
|
<p>The entry searched for, usually today.</p>
|
|
148
126
|
|
|
149
127
|
<p>@return [StandupMD::Entry]</p>
|
|
150
|
-
|
|
151
128
|
</div>
|
|
152
129
|
</div>
|
|
153
|
-
|
|
154
130
|
<div id="attribute-i-file" class="method-detail">
|
|
155
131
|
<div class="method-heading attribute-method-heading">
|
|
156
132
|
<span class="method-name">file</span><span
|
|
@@ -158,14 +134,11 @@
|
|
|
158
134
|
</div>
|
|
159
135
|
|
|
160
136
|
<div class="method-description">
|
|
161
|
-
|
|
162
137
|
<p>The file loaded.</p>
|
|
163
138
|
|
|
164
139
|
<p>@return [StandupMD::File]</p>
|
|
165
|
-
|
|
166
140
|
</div>
|
|
167
141
|
</div>
|
|
168
|
-
|
|
169
142
|
<div id="attribute-i-options" class="method-detail">
|
|
170
143
|
<div class="method-heading attribute-method-heading">
|
|
171
144
|
<span class="method-name">options</span><span
|
|
@@ -173,112 +146,75 @@
|
|
|
173
146
|
</div>
|
|
174
147
|
|
|
175
148
|
<div class="method-description">
|
|
176
|
-
|
|
177
149
|
<p>Arguments passed at runtime.</p>
|
|
178
150
|
|
|
179
151
|
<p>@return [Array] ARGV</p>
|
|
180
|
-
|
|
181
152
|
</div>
|
|
182
153
|
</div>
|
|
183
|
-
|
|
184
154
|
</section>
|
|
185
|
-
|
|
186
155
|
|
|
187
|
-
|
|
156
|
+
|
|
188
157
|
<section id="public-class-5Buntitled-5D-method-details" class="method-section">
|
|
189
158
|
<header>
|
|
190
159
|
<h3>Public Class Methods</h3>
|
|
191
160
|
</header>
|
|
192
161
|
|
|
193
|
-
|
|
194
162
|
<div id="method-c-config" class="method-detail ">
|
|
195
|
-
|
|
196
163
|
<div class="method-heading">
|
|
197
164
|
<span class="method-name">config</span><span
|
|
198
165
|
class="method-args">()</span>
|
|
199
|
-
|
|
200
166
|
<span class="method-click-advice">click to toggle source</span>
|
|
201
|
-
|
|
202
167
|
</div>
|
|
203
|
-
|
|
204
168
|
|
|
205
169
|
<div class="method-description">
|
|
206
|
-
|
|
207
170
|
<p>Access to the class's configuration.</p>
|
|
208
171
|
|
|
209
172
|
<p>@return [StandupMD::Config::Cli]</p>
|
|
210
|
-
|
|
211
|
-
|
|
212
173
|
|
|
213
|
-
|
|
214
174
|
<div class="method-source-code" id="config-source">
|
|
215
175
|
<pre><span class="ruby-comment"># File lib/standup_md/cli.rb, line 16</span>
|
|
216
176
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier ruby-title">config</span>
|
|
217
177
|
<span class="ruby-ivar">@config</span> <span class="ruby-operator">||=</span> <span class="ruby-constant">StandupMD</span>.<span class="ruby-identifier">config</span>.<span class="ruby-identifier">cli</span>
|
|
218
178
|
<span class="ruby-keyword">end</span></pre>
|
|
219
179
|
</div>
|
|
220
|
-
|
|
221
180
|
</div>
|
|
222
181
|
|
|
223
|
-
|
|
224
182
|
|
|
225
|
-
|
|
226
183
|
</div>
|
|
227
184
|
|
|
228
|
-
|
|
229
185
|
<div id="method-c-echo" class="method-detail ">
|
|
230
|
-
|
|
231
186
|
<div class="method-heading">
|
|
232
187
|
<span class="method-name">echo</span><span
|
|
233
188
|
class="method-args">(msg)</span>
|
|
234
|
-
|
|
235
189
|
<span class="method-click-advice">click to toggle source</span>
|
|
236
|
-
|
|
237
190
|
</div>
|
|
238
|
-
|
|
239
191
|
|
|
240
192
|
<div class="method-description">
|
|
241
|
-
|
|
242
193
|
<p>Prints output if <code>verbose</code> is true.</p>
|
|
243
194
|
|
|
244
195
|
<p>@return [nil]</p>
|
|
245
|
-
|
|
246
|
-
|
|
247
196
|
|
|
248
|
-
|
|
249
197
|
<div class="method-source-code" id="echo-source">
|
|
250
198
|
<pre><span class="ruby-comment"># File lib/standup_md/cli.rb, line 24</span>
|
|
251
199
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier ruby-title">echo</span>(<span class="ruby-identifier">msg</span>)
|
|
252
200
|
<span class="ruby-identifier">puts</span> <span class="ruby-identifier">msg</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">config</span>.<span class="ruby-identifier">verbose</span>
|
|
253
201
|
<span class="ruby-keyword">end</span></pre>
|
|
254
202
|
</div>
|
|
255
|
-
|
|
256
203
|
</div>
|
|
257
204
|
|
|
258
|
-
|
|
259
205
|
|
|
260
|
-
|
|
261
206
|
</div>
|
|
262
207
|
|
|
263
|
-
|
|
264
208
|
<div id="method-c-execute" class="method-detail ">
|
|
265
|
-
|
|
266
209
|
<div class="method-heading">
|
|
267
210
|
<span class="method-name">execute</span><span
|
|
268
211
|
class="method-args">(options = [])</span>
|
|
269
|
-
|
|
270
212
|
<span class="method-click-advice">click to toggle source</span>
|
|
271
|
-
|
|
272
213
|
</div>
|
|
273
|
-
|
|
274
214
|
|
|
275
215
|
<div class="method-description">
|
|
276
|
-
|
|
277
216
|
<p>Creates an instance of <code>StandupMD</code> and runs what the user requested.</p>
|
|
278
|
-
|
|
279
|
-
|
|
280
217
|
|
|
281
|
-
|
|
282
218
|
<div class="method-source-code" id="execute-source">
|
|
283
219
|
<pre><span class="ruby-comment"># File lib/standup_md/cli.rb, line 30</span>
|
|
284
220
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier ruby-title">execute</span>(<span class="ruby-identifier">options</span> = [])
|
|
@@ -292,35 +228,23 @@
|
|
|
292
228
|
<span class="ruby-keyword">end</span>
|
|
293
229
|
<span class="ruby-keyword">end</span></pre>
|
|
294
230
|
</div>
|
|
295
|
-
|
|
296
231
|
</div>
|
|
297
232
|
|
|
298
|
-
|
|
299
233
|
|
|
300
|
-
|
|
301
234
|
</div>
|
|
302
235
|
|
|
303
|
-
|
|
304
236
|
<div id="method-c-new" class="method-detail ">
|
|
305
|
-
|
|
306
237
|
<div class="method-heading">
|
|
307
238
|
<span class="method-name">new</span><span
|
|
308
239
|
class="method-args">(options = [], load_config = true)</span>
|
|
309
|
-
|
|
310
240
|
<span class="method-click-advice">click to toggle source</span>
|
|
311
|
-
|
|
312
241
|
</div>
|
|
313
|
-
|
|
314
242
|
|
|
315
243
|
<div class="method-description">
|
|
316
|
-
|
|
317
244
|
<p>Constructor. Sets defaults.</p>
|
|
318
245
|
|
|
319
246
|
<p>@param [Array] options</p>
|
|
320
|
-
|
|
321
|
-
|
|
322
247
|
|
|
323
|
-
|
|
324
248
|
<div class="method-source-code" id="new-source">
|
|
325
249
|
<pre><span class="ruby-comment"># File lib/standup_md/cli.rb, line 63</span>
|
|
326
250
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">initialize</span>(<span class="ruby-identifier">options</span> = [], <span class="ruby-identifier">load_config</span> = <span class="ruby-keyword">true</span>)
|
|
@@ -334,78 +258,53 @@
|
|
|
334
258
|
<span class="ruby-ivar">@entry</span> = <span class="ruby-identifier">new_entry</span>(<span class="ruby-ivar">@file</span>)
|
|
335
259
|
<span class="ruby-keyword">end</span></pre>
|
|
336
260
|
</div>
|
|
337
|
-
|
|
338
261
|
</div>
|
|
339
262
|
|
|
340
|
-
|
|
341
263
|
|
|
342
|
-
|
|
343
264
|
</div>
|
|
344
265
|
|
|
345
|
-
|
|
346
266
|
</section>
|
|
347
|
-
|
|
267
|
+
|
|
348
268
|
<section id="public-instance-5Buntitled-5D-method-details" class="method-section">
|
|
349
269
|
<header>
|
|
350
270
|
<h3>Public Instance Methods</h3>
|
|
351
271
|
</header>
|
|
352
272
|
|
|
353
|
-
|
|
354
273
|
<div id="method-i-echo" class="method-detail ">
|
|
355
|
-
|
|
356
274
|
<div class="method-heading">
|
|
357
275
|
<span class="method-name">echo</span><span
|
|
358
276
|
class="method-args">(msg)</span>
|
|
359
|
-
|
|
360
277
|
<span class="method-click-advice">click to toggle source</span>
|
|
361
|
-
|
|
362
278
|
</div>
|
|
363
|
-
|
|
364
279
|
|
|
365
280
|
<div class="method-description">
|
|
366
|
-
|
|
367
281
|
<p>Quick access to <a href="Cli.html#method-c-echo"><code>Cli.echo</code></a>.</p>
|
|
368
282
|
|
|
369
283
|
<p>@return [nil]</p>
|
|
370
|
-
|
|
371
|
-
|
|
372
284
|
|
|
373
|
-
|
|
374
285
|
<div class="method-source-code" id="echo-source">
|
|
375
286
|
<pre><span class="ruby-comment"># File lib/standup_md/cli.rb, line 117</span>
|
|
376
287
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">echo</span>(<span class="ruby-identifier">msg</span>)
|
|
377
288
|
<span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">echo</span>(<span class="ruby-identifier">msg</span>)
|
|
378
289
|
<span class="ruby-keyword">end</span></pre>
|
|
379
290
|
</div>
|
|
380
|
-
|
|
381
291
|
</div>
|
|
382
292
|
|
|
383
|
-
|
|
384
293
|
|
|
385
|
-
|
|
386
294
|
</div>
|
|
387
295
|
|
|
388
|
-
|
|
389
296
|
<div id="method-i-edit" class="method-detail ">
|
|
390
|
-
|
|
391
297
|
<div class="method-heading">
|
|
392
298
|
<span class="method-name">edit</span><span
|
|
393
299
|
class="method-args">()</span>
|
|
394
|
-
|
|
395
300
|
<span class="method-click-advice">click to toggle source</span>
|
|
396
|
-
|
|
397
301
|
</div>
|
|
398
|
-
|
|
399
302
|
|
|
400
303
|
<div class="method-description">
|
|
401
|
-
|
|
402
304
|
<p>Opens the file in an editor. Abandons the script.</p>
|
|
403
305
|
|
|
404
306
|
<p>@return [nil]</p>
|
|
405
|
-
|
|
406
|
-
|
|
407
307
|
|
|
408
|
-
|
|
409
308
|
<div class="method-source-code" id="edit-source">
|
|
410
309
|
<pre><span class="ruby-comment"># File lib/standup_md/cli.rb, line 99</span>
|
|
411
310
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">edit</span>
|
|
@@ -413,35 +312,23 @@
|
|
|
413
312
|
<span class="ruby-identifier">exec</span>(<span class="ruby-node">"#{@config.editor} #{file.name}"</span>)
|
|
414
313
|
<span class="ruby-keyword">end</span></pre>
|
|
415
314
|
</div>
|
|
416
|
-
|
|
417
315
|
</div>
|
|
418
316
|
|
|
419
|
-
|
|
420
317
|
|
|
421
|
-
|
|
422
318
|
</div>
|
|
423
319
|
|
|
424
|
-
|
|
425
320
|
<div id="method-i-load_preferences" class="method-detail ">
|
|
426
|
-
|
|
427
321
|
<div class="method-heading">
|
|
428
322
|
<span class="method-name">load_preferences</span><span
|
|
429
323
|
class="method-args">()</span>
|
|
430
|
-
|
|
431
324
|
<span class="method-click-advice">click to toggle source</span>
|
|
432
|
-
|
|
433
325
|
</div>
|
|
434
|
-
|
|
435
326
|
|
|
436
327
|
<div class="method-description">
|
|
437
|
-
|
|
438
328
|
<p>Load the preference file.</p>
|
|
439
329
|
|
|
440
330
|
<p>@return [nil]</p>
|
|
441
|
-
|
|
442
|
-
|
|
443
331
|
|
|
444
|
-
|
|
445
332
|
<div class="method-source-code" id="load_preferences-source">
|
|
446
333
|
<pre><span class="ruby-comment"># File lib/standup_md/cli.rb, line 78</span>
|
|
447
334
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">load_preferences</span>
|
|
@@ -453,70 +340,46 @@
|
|
|
453
340
|
<span class="ruby-keyword">end</span>
|
|
454
341
|
<span class="ruby-keyword">end</span></pre>
|
|
455
342
|
</div>
|
|
456
|
-
|
|
457
343
|
</div>
|
|
458
344
|
|
|
459
|
-
|
|
460
345
|
|
|
461
|
-
|
|
462
346
|
</div>
|
|
463
347
|
|
|
464
|
-
|
|
465
348
|
<div id="method-i-preference_file_loaded-3F" class="method-detail ">
|
|
466
|
-
|
|
467
349
|
<div class="method-heading">
|
|
468
350
|
<span class="method-name">preference_file_loaded?</span><span
|
|
469
351
|
class="method-args">()</span>
|
|
470
|
-
|
|
471
352
|
<span class="method-click-advice">click to toggle source</span>
|
|
472
|
-
|
|
473
353
|
</div>
|
|
474
|
-
|
|
475
354
|
|
|
476
355
|
<div class="method-description">
|
|
477
|
-
|
|
478
356
|
<p>Has the preference file been loaded?</p>
|
|
479
357
|
|
|
480
358
|
<p>@return boolean</p>
|
|
481
|
-
|
|
482
|
-
|
|
483
359
|
|
|
484
|
-
|
|
485
360
|
<div class="method-source-code" id="preference_file_loaded-3F-source">
|
|
486
361
|
<pre><span class="ruby-comment"># File lib/standup_md/cli.rb, line 91</span>
|
|
487
362
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">preference_file_loaded?</span>
|
|
488
363
|
<span class="ruby-ivar">@preference_file_loaded</span>
|
|
489
364
|
<span class="ruby-keyword">end</span></pre>
|
|
490
365
|
</div>
|
|
491
|
-
|
|
492
366
|
</div>
|
|
493
367
|
|
|
494
|
-
|
|
495
368
|
|
|
496
|
-
|
|
497
369
|
</div>
|
|
498
370
|
|
|
499
|
-
|
|
500
371
|
<div id="method-i-write_file" class="method-detail ">
|
|
501
|
-
|
|
502
372
|
<div class="method-heading">
|
|
503
373
|
<span class="method-name">write_file</span><span
|
|
504
374
|
class="method-args">()</span>
|
|
505
|
-
|
|
506
375
|
<span class="method-click-advice">click to toggle source</span>
|
|
507
|
-
|
|
508
376
|
</div>
|
|
509
|
-
|
|
510
377
|
|
|
511
378
|
<div class="method-description">
|
|
512
|
-
|
|
513
379
|
<p>Writes entries to the file.</p>
|
|
514
380
|
|
|
515
381
|
<p>@return [Boolean] true if file was written</p>
|
|
516
|
-
|
|
517
|
-
|
|
518
382
|
|
|
519
|
-
|
|
520
383
|
<div class="method-source-code" id="write_file-source">
|
|
521
384
|
<pre><span class="ruby-comment"># File lib/standup_md/cli.rb, line 108</span>
|
|
522
385
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">write_file</span>
|
|
@@ -524,25 +387,20 @@
|
|
|
524
387
|
<span class="ruby-identifier">file</span>.<span class="ruby-identifier">write</span>
|
|
525
388
|
<span class="ruby-keyword">end</span></pre>
|
|
526
389
|
</div>
|
|
527
|
-
|
|
528
390
|
</div>
|
|
529
391
|
|
|
530
|
-
|
|
531
392
|
|
|
532
|
-
|
|
533
393
|
</div>
|
|
534
394
|
|
|
535
|
-
|
|
536
395
|
</section>
|
|
537
|
-
|
|
538
|
-
</section>
|
|
539
396
|
|
|
397
|
+
</section>
|
|
540
398
|
</main>
|
|
541
399
|
|
|
542
400
|
|
|
543
401
|
<footer id="validator-badges" role="contentinfo">
|
|
544
402
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
|
545
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
|
403
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
|
|
546
404
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
|
547
405
|
</footer>
|
|
548
406
|
|