myask 0.0.1 → 1.0.0

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.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/bin/myask +1 -1
  4. data/html/App.html +116 -0
  5. data/html/MyAsk/Api/Helper.html +207 -0
  6. data/html/MyAsk/Api/Invitation.html +212 -0
  7. data/html/MyAsk/Api/Project.html +355 -0
  8. data/html/MyAsk/Api/ProjectHelper.html +299 -0
  9. data/html/MyAsk/Api/Question.html +261 -0
  10. data/html/MyAsk/Api.html +120 -0
  11. data/html/MyAsk/Config.html +195 -0
  12. data/html/MyAsk/ConfigHelper.html +251 -0
  13. data/html/MyAsk/Prompt.html +221 -0
  14. data/html/MyAsk/PromptHelper.html +330 -0
  15. data/html/MyAsk.html +114 -0
  16. data/html/README_rdoc.html +394 -0
  17. data/html/created.rid +14 -0
  18. data/html/css/fonts.css +167 -0
  19. data/html/css/rdoc.css +681 -0
  20. data/html/fonts/Lato-Light.ttf +0 -0
  21. data/html/fonts/Lato-LightItalic.ttf +0 -0
  22. data/html/fonts/Lato-Regular.ttf +0 -0
  23. data/html/fonts/Lato-RegularItalic.ttf +0 -0
  24. data/html/fonts/SourceCodePro-Bold.ttf +0 -0
  25. data/html/fonts/SourceCodePro-Regular.ttf +0 -0
  26. data/html/images/add.png +0 -0
  27. data/html/images/arrow_up.png +0 -0
  28. data/html/images/brick.png +0 -0
  29. data/html/images/brick_link.png +0 -0
  30. data/html/images/bug.png +0 -0
  31. data/html/images/bullet_black.png +0 -0
  32. data/html/images/bullet_toggle_minus.png +0 -0
  33. data/html/images/bullet_toggle_plus.png +0 -0
  34. data/html/images/date.png +0 -0
  35. data/html/images/delete.png +0 -0
  36. data/html/images/find.png +0 -0
  37. data/html/images/loadingAnimation.gif +0 -0
  38. data/html/images/macFFBgHack.png +0 -0
  39. data/html/images/package.png +0 -0
  40. data/html/images/page_green.png +0 -0
  41. data/html/images/page_white_text.png +0 -0
  42. data/html/images/page_white_width.png +0 -0
  43. data/html/images/plugin.png +0 -0
  44. data/html/images/ruby.png +0 -0
  45. data/html/images/tag_blue.png +0 -0
  46. data/html/images/tag_green.png +0 -0
  47. data/html/images/transparent.png +0 -0
  48. data/html/images/wrench.png +0 -0
  49. data/html/images/wrench_orange.png +0 -0
  50. data/html/images/zoom.png +0 -0
  51. data/html/index.html +403 -0
  52. data/html/js/darkfish.js +120 -0
  53. data/html/js/navigation.js +105 -0
  54. data/html/js/navigation.js.gz +0 -0
  55. data/html/js/search.js +110 -0
  56. data/html/js/search_index.js +1 -0
  57. data/html/js/search_index.js.gz +0 -0
  58. data/html/js/searcher.js +229 -0
  59. data/html/js/searcher.js.gz +0 -0
  60. data/html/table_of_contents.html +257 -0
  61. data/lib/myask/version.rb +1 -1
  62. data/pkg/myask-0.0.1/Gemfile +10 -0
  63. data/pkg/myask-0.0.1/Gemfile.lock +70 -0
  64. data/pkg/myask-0.0.1/README.rdoc +6 -0
  65. data/pkg/myask-0.0.1/Rakefile +21 -0
  66. data/pkg/myask-0.0.1/bin/myask +101 -0
  67. data/pkg/myask-0.0.1/lib/myask/api/api_helper.rb +45 -0
  68. data/pkg/myask-0.0.1/lib/myask/api/invitation.rb +49 -0
  69. data/pkg/myask-0.0.1/lib/myask/api/project.rb +193 -0
  70. data/pkg/myask-0.0.1/lib/myask/api/project_helper.rb +46 -0
  71. data/pkg/myask-0.0.1/lib/myask/api/question.rb +99 -0
  72. data/pkg/myask-0.0.1/lib/myask/config.rb +37 -0
  73. data/pkg/myask-0.0.1/lib/myask/config_helper.rb +28 -0
  74. data/pkg/myask-0.0.1/lib/myask/prompt.rb +63 -0
  75. data/pkg/myask-0.0.1/lib/myask/prompt_helper.rb +80 -0
  76. data/pkg/myask-0.0.1/lib/myask/version.rb +3 -0
  77. data/pkg/myask-0.0.1/lib/myask.rb +28 -0
  78. data/pkg/myask-0.0.1/myask.gemspec +22 -0
  79. data/pkg/myask-0.0.1/myask.rdoc +138 -0
  80. data/pkg/myask-0.0.1/test/default_test.rb +14 -0
  81. data/pkg/myask-0.0.1/test/test_helper.rb +4 -0
  82. data/pkg/myask-0.0.1.gem +0 -0
  83. metadata +79 -1
data/html/MyAsk.html ADDED
@@ -0,0 +1,114 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+
8
+ <title>module Myask - Your application title</title>
9
+
10
+ <meta name="keywords" content="ruby,module,Myask">
11
+
12
+ <meta name="description" content="Documentation for the Myask module">
13
+
14
+ <script type="text/javascript">
15
+ var rdoc_rel_prefix = "./";
16
+ var index_rel_prefix = "./";
17
+ </script>
18
+
19
+ <script src="./js/navigation.js" defer></script>
20
+ <script src="./js/search.js" defer></script>
21
+ <script src="./js/search_index.js" defer></script>
22
+ <script src="./js/searcher.js" defer></script>
23
+ <script src="./js/darkfish.js" defer></script>
24
+
25
+ <link href="./css/fonts.css" rel="stylesheet">
26
+ <link href="./css/rdoc.css" rel="stylesheet">
27
+
28
+
29
+ <body id="top" role="document" class="module">
30
+ <div id="navigation-toggle" role="button" tabindex="0" aria-label="Toggle sidebar" aria-expanded="true" aria-controls="navigation">
31
+ <span aria-hidden="true">&#9776;</span>
32
+ </div>
33
+
34
+
35
+ <nav id="navigation" role="navigation">
36
+ <div id="project-navigation">
37
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
38
+ <h2>
39
+ <a href="./index.html" rel="home">Home</a>
40
+ </h2>
41
+
42
+ <div id="table-of-contents-navigation">
43
+ <a href="./table_of_contents.html#pages">Pages</a>
44
+ <a href="./table_of_contents.html#classes">Classes</a>
45
+ <a href="./table_of_contents.html#methods">Methods</a>
46
+ </div>
47
+ </div>
48
+
49
+ <div id="search-section" role="search" class="project-section initially-hidden">
50
+ <form action="#" method="get" accept-charset="utf-8">
51
+ <div id="search-field-wrapper">
52
+ <input id="search-field" role="combobox" aria-label="Search"
53
+ aria-autocomplete="list" aria-controls="search-results"
54
+ type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
55
+ title="Type to search, Up and Down to navigate, Enter to load">
56
+ </div>
57
+
58
+ <ul id="search-results" aria-label="Search Results"
59
+ aria-busy="false" aria-expanded="false"
60
+ aria-atomic="false" class="initially-hidden"></ul>
61
+ </form>
62
+ </div>
63
+
64
+ </div>
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+ <footer id="validator-badges" role="contentinfo">
77
+ <p><a href="https://validator.w3.org/check/referer">Validate</a>
78
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.13.0.
79
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
80
+ </footer>
81
+
82
+ </nav>
83
+
84
+ <main role="main" aria-labelledby="module-Myask">
85
+
86
+
87
+
88
+ <h1 id="module-Myask" class="anchor-link module">
89
+ module Myask
90
+ </h1>
91
+
92
+ <section class="description">
93
+
94
+ </section>
95
+
96
+ <section id="5Buntitled-5D" class="documentation-section anchor-link">
97
+
98
+
99
+ <section class="constants-list">
100
+ <header>
101
+ <h3>Constants</h3>
102
+ </header>
103
+ <dl>
104
+ <dt id="VERSION">VERSION
105
+ <dd>
106
+
107
+ </dl>
108
+ </section>
109
+
110
+
111
+
112
+ </section>
113
+ </main>
114
+
@@ -0,0 +1,394 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+
8
+ <title>README - Your application title</title>
9
+
10
+ <meta name="keywords" content="ruby,documentation,README">
11
+ <meta name="description" content="README: myask Describe your project here == myask - Describe your application here v0. tt&gt; Shows a list of commands or help for one command Gets help for ">
12
+
13
+ <script type="text/javascript">
14
+ var rdoc_rel_prefix = "./";
15
+ var index_rel_prefix = "./";
16
+ </script>
17
+
18
+ <script src="./js/navigation.js" defer></script>
19
+ <script src="./js/search.js" defer></script>
20
+ <script src="./js/search_index.js" defer></script>
21
+ <script src="./js/searcher.js" defer></script>
22
+ <script src="./js/darkfish.js" defer></script>
23
+
24
+ <link href="./css/fonts.css" rel="stylesheet">
25
+ <link href="./css/rdoc.css" rel="stylesheet">
26
+
27
+
28
+ <body id="top" role="document" class="file">
29
+ <div id="navigation-toggle" role="button" tabindex="0" aria-label="Toggle sidebar" aria-expanded="true" aria-controls="navigation">
30
+ <span aria-hidden="true">&#9776;</span>
31
+ </div>
32
+
33
+
34
+ <nav id="navigation" role="navigation">
35
+ <div id="project-navigation">
36
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
37
+ <h2>
38
+ <a href="./index.html" rel="home">Home</a>
39
+ </h2>
40
+
41
+ <div id="table-of-contents-navigation">
42
+ <a href="./table_of_contents.html#pages">Pages</a>
43
+ <a href="./table_of_contents.html#classes">Classes</a>
44
+ <a href="./table_of_contents.html#methods">Methods</a>
45
+ </div>
46
+ </div>
47
+
48
+ <div id="search-section" role="search" class="project-section initially-hidden">
49
+ <form action="#" method="get" accept-charset="utf-8">
50
+ <div id="search-field-wrapper">
51
+ <input id="search-field" role="combobox" aria-label="Search"
52
+ aria-autocomplete="list" aria-controls="search-results"
53
+ type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
54
+ title="Type to search, Up and Down to navigate, Enter to load">
55
+ </div>
56
+
57
+ <ul id="search-results" aria-label="Search Results"
58
+ aria-busy="false" aria-expanded="false"
59
+ aria-atomic="false" class="initially-hidden"></ul>
60
+ </form>
61
+ </div>
62
+
63
+ </div>
64
+
65
+
66
+ <div class="nav-section">
67
+ <h3>Table of Contents</h3>
68
+
69
+
70
+
71
+ <ul class="link-list" role="directory">
72
+ <li>
73
+ <details open>
74
+ <summary> <a href="#label-myask">myask</a>
75
+ </summary>
76
+ <ul class="link-list" role="directory">
77
+ <li>
78
+ <details open>
79
+ <summary> <a href="#label-myask+-+Describe+your+application+here">myask - Describe your application here</a>
80
+ </summary>
81
+ <ul class="link-list" role="directory">
82
+ <li> <a href="#label-Global+Options">Global Options</a>
83
+ <li> <a href="#label--api_host+arg">–api_host arg</a>
84
+ <li> <a href="#label--api_key+arg">–api_key arg</a>
85
+ <li> <a href="#label--project+arg">–project arg</a>
86
+ <li> <a href="#label--help">–help</a>
87
+ <li> <a href="#label---5Bno--5Djson">–[no-]json</a>
88
+ <li> <a href="#label---5Bno--5Dsilent">–[no-]silent</a>
89
+ <li> <a href="#label--version">–version</a>
90
+ <li>
91
+ <details open>
92
+ <summary> <a href="#label-Commands">Commands</a>
93
+ </summary>
94
+ <ul class="link-list" role="directory">
95
+ <li>
96
+ <details open>
97
+ <summary> <a href="#label-Command-3A+config+">Command: <code>config </code></a>
98
+ </summary>
99
+ <ul class="link-list" role="directory">
100
+ <li>
101
+ <details open>
102
+ <summary> <a href="#label-Commands">Commands</a>
103
+ </summary>
104
+ <ul class="link-list" role="directory">
105
+ <li> <a href="#label-Command-3A+save+">Command: <code>save </code></a>
106
+ <li> <a href="#label-Command-3A+show+">Command: <code>show </code></a>
107
+
108
+ </ul>
109
+ </details>
110
+ </li>
111
+
112
+ </ul>
113
+ </details>
114
+ </li>
115
+ <li>
116
+ <details open>
117
+ <summary> <a href="#label-Command-3A+help++command">Command: <code>help command</code></a>
118
+ </summary>
119
+ <ul class="link-list" role="directory">
120
+ <li> <a href="#label-Options">Options</a>
121
+ <li> <a href="#label-c">-c</a>
122
+
123
+ </ul>
124
+ </details>
125
+ </li>
126
+ <li>
127
+ <details open>
128
+ <summary> <a href="#label-Command-3A+initconfig+">Command: <code>initconfig </code></a>
129
+ </summary>
130
+ <ul class="link-list" role="directory">
131
+ <li> <a href="#label-Options">Options</a>
132
+ <li> <a href="#label---5Bno--5Dforce">–[no-]force</a>
133
+
134
+ </ul>
135
+ </details>
136
+ </li>
137
+ <li>
138
+ <details open>
139
+ <summary> <a href="#label-Command-3A+invitation+">Command: <code>invitation </code></a>
140
+ </summary>
141
+ <ul class="link-list" role="directory">
142
+ <li>
143
+ <details open>
144
+ <summary> <a href="#label-Commands">Commands</a>
145
+ </summary>
146
+ <ul class="link-list" role="directory">
147
+ <li> <a href="#label-Command-3A+list+">Command: <code>list </code></a>
148
+ <li> <a href="#label-Command-3A+send+">Command: <code>send </code></a>
149
+
150
+ </ul>
151
+ </details>
152
+ </li>
153
+
154
+ </ul>
155
+ </details>
156
+ </li>
157
+ <li>
158
+ <details open>
159
+ <summary> <a href="#label-Command-3A+project+">Command: <code>project </code></a>
160
+ </summary>
161
+ <ul class="link-list" role="directory">
162
+ <li>
163
+ <details open>
164
+ <summary> <a href="#label-Commands">Commands</a>
165
+ </summary>
166
+ <ul class="link-list" role="directory">
167
+ <li> <a href="#label-Command-3A+create+">Command: <code>create </code></a>
168
+ <li> <a href="#label-Command-3A+delete+">Command: <code>delete </code></a>
169
+ <li> <a href="#label-Command-3A+edit++project">Command: <code>edit project</code></a>
170
+ <li> <a href="#label-Command-3A+set++project">Command: <code>set project</code></a>
171
+ <li> <a href="#label-Command-3A+show++project">Command: <code>show project</code></a>
172
+
173
+ </ul>
174
+ </details>
175
+ </li>
176
+
177
+ </ul>
178
+ </details>
179
+ </li>
180
+ <li> <a href="#label-Command-3A+prompt+">Command: <code>prompt </code></a>
181
+ <li>
182
+ <details open>
183
+ <summary> <a href="#label-Command-3A+question+">Command: <code>question </code></a>
184
+ </summary>
185
+ <ul class="link-list" role="directory">
186
+ <li>
187
+ <details open>
188
+ <summary> <a href="#label-Commands">Commands</a>
189
+ </summary>
190
+ <ul class="link-list" role="directory">
191
+ <li> <a href="#label-Command-3A+delete++question_id">Command: <code>delete question_id</code></a>
192
+ <li> <a href="#label-Command-3A+show++question_id">Command: <code>show question_id</code></a>
193
+
194
+ </ul>
195
+ </details>
196
+ </li>
197
+
198
+ </ul>
199
+ </details>
200
+ </li>
201
+
202
+ </ul>
203
+ </details>
204
+ </li>
205
+
206
+ </ul>
207
+ </details>
208
+ </li>
209
+
210
+ </ul>
211
+ </details>
212
+ </li>
213
+
214
+ </ul>
215
+ </div>
216
+
217
+
218
+ <div id="fileindex-section" class="nav-section">
219
+ <h3>Pages</h3>
220
+
221
+ <ul class="link-list">
222
+ <li><a href="./README_rdoc.html">README</a>
223
+ </ul>
224
+ </div>
225
+
226
+
227
+ <footer id="validator-badges" role="contentinfo">
228
+ <p><a href="https://validator.w3.org/check/referer">Validate</a>
229
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.13.0.
230
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
231
+ </footer>
232
+
233
+ </nav>
234
+
235
+ <main role="main" aria-label="Page README.rdoc">
236
+
237
+ <h1 id="label-myask">myask<span><a href="#label-myask">&para;</a> <a href="#top">&uarr;</a></span></h1>
238
+
239
+ <p>Describe your project here</p>
240
+
241
+ <h2 id="label-myask+-+Describe+your+application+here">myask - Describe your application here<span><a href="#label-myask+-+Describe+your+application+here">&para;</a> <a href="#top">&uarr;</a></span></h2>
242
+
243
+ <p>v0.0.1</p>
244
+
245
+ <h3 id="label-Global+Options">Global Options<span><a href="#label-Global+Options">&para;</a> <a href="#top">&uarr;</a></span></h3>
246
+
247
+ <h3 id="label--api_host+arg">–api_host arg<span><a href="#label--api_host+arg">&para;</a> <a href="#top">&uarr;</a></span></h3>
248
+
249
+ <p>Host for <a href="MyAsk.html"><code>MyAsk</code></a> API</p>
250
+ <dl class="rdoc-list label-list"><dt>Default Value</dt>
251
+ <dd>
252
+ <p><a href="http://localhost:3000">localhost:3000</a></p>
253
+ </dd></dl>
254
+
255
+ <h3 id="label--api_key+arg">–api_key arg<span><a href="#label--api_key+arg">&para;</a> <a href="#top">&uarr;</a></span></h3>
256
+
257
+ <p>API Key for <a href="MyAsk.html"><code>MyAsk</code></a> API</p>
258
+ <dl class="rdoc-list label-list"><dt>Default Value</dt>
259
+ <dd>
260
+ <p>A9qVFSgXFH8Ubclq4jVYn0PBsEGMSfQf</p>
261
+ </dd></dl>
262
+
263
+ <h3 id="label--project+arg">–project arg<span><a href="#label--project+arg">&para;</a> <a href="#top">&uarr;</a></span></h3>
264
+
265
+ <p>Current <a href="MyAsk.html"><code>MyAsk</code></a> Project</p>
266
+ <dl class="rdoc-list label-list"><dt>Default Value</dt>
267
+ <dd>
268
+ <p>156891416</p>
269
+ </dd></dl>
270
+
271
+ <h3 id="label--help">–help<span><a href="#label--help">&para;</a> <a href="#top">&uarr;</a></span></h3>
272
+
273
+ <p>Show this message</p>
274
+
275
+ <h3 id="label---5Bno--5Djson">–[no-]json<span><a href="#label---5Bno--5Djson">&para;</a> <a href="#top">&uarr;</a></span></h3>
276
+
277
+ <p>Format Output as JSON</p>
278
+
279
+ <h3 id="label---5Bno--5Dsilent">–[no-]silent<span><a href="#label---5Bno--5Dsilent">&para;</a> <a href="#top">&uarr;</a></span></h3>
280
+
281
+ <p>Silent Progress Spinner</p>
282
+
283
+ <h3 id="label--version">–version<span><a href="#label--version">&para;</a> <a href="#top">&uarr;</a></span></h3>
284
+
285
+ <p>Display the program version</p>
286
+
287
+ <h3 id="label-Commands">Commands<span><a href="#label-Commands">&para;</a> <a href="#top">&uarr;</a></span></h3>
288
+
289
+ <h4 id="label-Command-3A+config+">Command: <code>config </code><span><a href="#label-Command-3A+config+">&para;</a> <a href="#top">&uarr;</a></span></h4>
290
+
291
+ <p>View current or set new <a href="MyAsk.html"><code>MyAsk</code></a> configuration values</p>
292
+
293
+ <h5 id="label-Commands">Commands<span><a href="#label-Commands">&para;</a> <a href="#top">&uarr;</a></span></h5>
294
+
295
+ <h6 id="label-Command-3A+save+">Command: <code>save </code><span><a href="#label-Command-3A+save+">&para;</a> <a href="#top">&uarr;</a></span></h6>
296
+
297
+ <h6 id="label-Command-3A+show+">Command: <code>show </code><span><a href="#label-Command-3A+show+">&para;</a> <a href="#top">&uarr;</a></span></h6>
298
+ <dl class="rdoc-list label-list"><dt>Default Command</dt>
299
+ <dd>
300
+ <p>show</p>
301
+ </dd></dl>
302
+
303
+ <h4 id="label-Command-3A+help++command">Command: <code>help command</code><span><a href="#label-Command-3A+help++command">&para;</a> <a href="#top">&uarr;</a></span></h4>
304
+
305
+ <p>Shows a list of commands or help for one command</p>
306
+
307
+ <p>Gets help for the application or its commands. Can also list the commands in a way helpful to creating a bash-style completion function</p>
308
+
309
+ <h5 id="label-Options">Options<span><a href="#label-Options">&para;</a> <a href="#top">&uarr;</a></span></h5>
310
+
311
+ <h5 id="label-c">-c<span><a href="#label-c">&para;</a> <a href="#top">&uarr;</a></span></h5>
312
+
313
+ <p>List commands one per line, to assist with shell completion</p>
314
+
315
+ <h4 id="label-Command-3A+initconfig+">Command: <code>initconfig </code><span><a href="#label-Command-3A+initconfig+">&para;</a> <a href="#top">&uarr;</a></span></h4>
316
+
317
+ <p>Initialize the config file using current global options</p>
318
+
319
+ <p>Initializes a configuration file where you can set default options for command line flags, both globally and on a per-command basis. These defaults override the built-in defaults and allow you to omit commonly-used command line flags when invoking this program</p>
320
+
321
+ <h5 id="label-Options">Options<span><a href="#label-Options">&para;</a> <a href="#top">&uarr;</a></span></h5>
322
+
323
+ <h5 id="label---5Bno--5Dforce">–[no-]force<span><a href="#label---5Bno--5Dforce">&para;</a> <a href="#top">&uarr;</a></span></h5>
324
+
325
+ <p>force overwrite of existing config file</p>
326
+
327
+ <h4 id="label-Command-3A+invitation+">Command: <code>invitation </code><span><a href="#label-Command-3A+invitation+">&para;</a> <a href="#top">&uarr;</a></span></h4>
328
+
329
+ <p>Create/list <a href="MyAsk.html"><code>MyAsk</code></a> Invitations</p>
330
+
331
+ <h5 id="label-Commands">Commands<span><a href="#label-Commands">&para;</a> <a href="#top">&uarr;</a></span></h5>
332
+
333
+ <h6 id="label-Command-3A+list+">Command: <code>list </code><span><a href="#label-Command-3A+list+">&para;</a> <a href="#top">&uarr;</a></span></h6>
334
+
335
+ <p>List <a href="MyAsk.html"><code>MyAsk</code></a> invitations.</p>
336
+
337
+ <h6 id="label-Command-3A+send+">Command: <code>send </code><span><a href="#label-Command-3A+send+">&para;</a> <a href="#top">&uarr;</a></span></h6>
338
+
339
+ <p>Send <a href="MyAsk.html"><code>MyAsk</code></a> invitation to a new user</p>
340
+ <dl class="rdoc-list label-list"><dt>Default Command</dt>
341
+ <dd>
342
+ <p>list</p>
343
+ </dd></dl>
344
+
345
+ <h4 id="label-Command-3A+project+">Command: <code>project </code><span><a href="#label-Command-3A+project+">&para;</a> <a href="#top">&uarr;</a></span></h4>
346
+
347
+ <p>Create/show/list/delete <a href="MyAsk.html"><code>MyAsk</code></a> Project</p>
348
+
349
+ <h5 id="label-Commands">Commands<span><a href="#label-Commands">&para;</a> <a href="#top">&uarr;</a></span></h5>
350
+
351
+ <h6 id="label-Command-3A+create+">Command: <code>create </code><span><a href="#label-Command-3A+create+">&para;</a> <a href="#top">&uarr;</a></span></h6>
352
+
353
+ <p>Create <a href="MyAsk.html"><code>MyAsk</code></a> Project</p>
354
+
355
+ <h6 id="label-Command-3A+delete+">Command: <code>delete </code><span><a href="#label-Command-3A+delete+">&para;</a> <a href="#top">&uarr;</a></span></h6>
356
+
357
+ <p>Delete <a href="MyAsk.html"><code>MyAsk</code></a> Project</p>
358
+
359
+ <h6 id="label-Command-3A+edit++project">Command: <code>edit project</code><span><a href="#label-Command-3A+edit++project">&para;</a> <a href="#top">&uarr;</a></span></h6>
360
+
361
+ <p>Edit <a href="MyAsk.html"><code>MyAsk</code></a> Project</p>
362
+
363
+ <h6 id="label-Command-3A+set++project">Command: <code>set project</code><span><a href="#label-Command-3A+set++project">&para;</a> <a href="#top">&uarr;</a></span></h6>
364
+
365
+ <p>Set <a href="MyAsk.html"><code>MyAsk</code></a> Project</p>
366
+
367
+ <h6 id="label-Command-3A+show++project">Command: <code>show project</code><span><a href="#label-Command-3A+show++project">&para;</a> <a href="#top">&uarr;</a></span></h6>
368
+
369
+ <p>Show <a href="MyAsk.html"><code>MyAsk</code></a> Project Details</p>
370
+
371
+ <h4 id="label-Command-3A+prompt+">Command: <code>prompt </code><span><a href="#label-Command-3A+prompt+">&para;</a> <a href="#top">&uarr;</a></span></h4>
372
+
373
+ <p>Send a prompt to <a href="MyAsk.html"><code>MyAsk</code></a> API</p>
374
+
375
+ <h4 id="label-Command-3A+question+">Command: <code>question </code><span><a href="#label-Command-3A+question+">&para;</a> <a href="#top">&uarr;</a></span></h4>
376
+
377
+ <p>Show/delete <a href="MyAsk.html"><code>MyAsk</code></a> Question</p>
378
+
379
+ <h5 id="label-Commands">Commands<span><a href="#label-Commands">&para;</a> <a href="#top">&uarr;</a></span></h5>
380
+
381
+ <h6 id="label-Command-3A+delete++question_id">Command: <code>delete question_id</code><span><a href="#label-Command-3A+delete++question_id">&para;</a> <a href="#top">&uarr;</a></span></h6>
382
+
383
+ <p>Delete <a href="MyAsk.html"><code>MyAsk</code></a> question</p>
384
+
385
+ <h6 id="label-Command-3A+show++question_id">Command: <code>show question_id</code><span><a href="#label-Command-3A+show++question_id">&para;</a> <a href="#top">&uarr;</a></span></h6>
386
+
387
+ <p>Show details for <a href="MyAsk.html"><code>MyAsk</code></a> question</p>
388
+ <dl class="rdoc-list label-list"><dt>Default Command</dt>
389
+ <dd>
390
+ <p>show</p>
391
+ </dd></dl>
392
+
393
+ </main>
394
+
data/html/created.rid ADDED
@@ -0,0 +1,14 @@
1
+ Fri, 28 Mar 2025 23:09:35 -0500
2
+ README.rdoc Fri, 28 Mar 2025 23:00:40 -0500
3
+ lib/myask.rb Fri, 28 Mar 2025 22:51:25 -0500
4
+ lib/myask/api/api_helper.rb Fri, 28 Mar 2025 18:06:40 -0500
5
+ lib/myask/api/invitation.rb Fri, 28 Mar 2025 22:57:27 -0500
6
+ lib/myask/api/project.rb Fri, 28 Mar 2025 18:08:49 -0500
7
+ lib/myask/api/project_helper.rb Fri, 28 Mar 2025 17:55:20 -0500
8
+ lib/myask/api/question.rb Fri, 28 Mar 2025 22:47:33 -0500
9
+ lib/myask/config.rb Fri, 28 Mar 2025 17:15:38 -0500
10
+ lib/myask/config_helper.rb Fri, 28 Mar 2025 17:40:13 -0500
11
+ lib/myask/prompt.rb Fri, 28 Mar 2025 18:17:01 -0500
12
+ lib/myask/prompt_helper.rb Fri, 28 Mar 2025 16:12:01 -0500
13
+ lib/myask/version.rb Fri, 28 Mar 2025 23:09:24 -0500
14
+ bin/myask Fri, 28 Mar 2025 23:09:00 -0500