mushikago-sdk 0.4.3 → 2.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 (134) hide show
  1. data/README.md +3 -1
  2. data/Rakefile +1 -0
  3. data/lib/mushikago/hanamgri/client.rb +264 -0
  4. data/lib/mushikago/hanamgri/create_domain_request.rb +25 -0
  5. data/lib/mushikago/hanamgri/delete_dictionary_request.rb +14 -0
  6. data/lib/mushikago/hanamgri/delete_domain_request.rb +16 -0
  7. data/lib/mushikago/hanamgri/delete_knowledge_request.rb +15 -0
  8. data/lib/mushikago/hanamgri/field.rb +20 -0
  9. data/lib/mushikago/hanamgri/get_analysis_request.rb +16 -0
  10. data/lib/mushikago/hanamgri/get_information_request.rb +14 -0
  11. data/lib/mushikago/hanamgri/get_queue_size_request.rb +14 -0
  12. data/lib/mushikago/hanamgri/list_analyses_request.rb +24 -0
  13. data/lib/mushikago/hanamgri/list_dictionaries_request.rb +17 -0
  14. data/lib/mushikago/hanamgri/list_domains_request.rb +20 -0
  15. data/lib/mushikago/hanamgri/list_knowledges_request.rb +20 -0
  16. data/lib/mushikago/hanamgri/request_analysis_request.rb +21 -0
  17. data/lib/mushikago/hanamgri/save_dictionary_request.rb +18 -0
  18. data/lib/mushikago/hanamgri/save_knowledge_request.rb +19 -0
  19. data/lib/mushikago/hanamgri/schema.rb +28 -0
  20. data/lib/mushikago/hanamgri/search_schema_request.rb +19 -0
  21. data/lib/mushikago/hanamgri/train_request.rb +21 -0
  22. data/lib/mushikago/hanamgri/training_data.rb +27 -0
  23. data/lib/mushikago/hanamgri/update_domain_request.rb +18 -0
  24. data/lib/mushikago/hanamgri.rb +30 -0
  25. data/lib/mushikago/version.rb +1 -1
  26. data/lib/mushikago.rb +1 -0
  27. data/spec/mushikago/hanamgri/client_spec.rb +61 -0
  28. data/spec/mushikago/hanamgri/create_domain_spec.rb +34 -0
  29. data/spec/mushikago/hanamgri/delete_dictionary_spec.rb +11 -0
  30. data/spec/mushikago/hanamgri/delete_domain_spec.rb +12 -0
  31. data/spec/mushikago/hanamgri/delete_knowledge_request_spec.rb +11 -0
  32. data/spec/mushikago/hanamgri/field_spec.rb +44 -0
  33. data/spec/mushikago/hanamgri/get_analysis_request_spec.rb +12 -0
  34. data/spec/mushikago/hanamgri/get_information_request_spec.rb +14 -0
  35. data/spec/mushikago/hanamgri/get_queue_size_request_spec.rb +10 -0
  36. data/spec/mushikago/hanamgri/list_analyses_spec.rb +25 -0
  37. data/spec/mushikago/hanamgri/list_dictionaries_spec.rb +19 -0
  38. data/spec/mushikago/hanamgri/list_domains_spec.rb +19 -0
  39. data/spec/mushikago/hanamgri/list_knowledges_request_spec.rb +20 -0
  40. data/spec/mushikago/hanamgri/request_analysis_request_spec.rb +21 -0
  41. data/spec/mushikago/hanamgri/save_dictionary_request_spec.rb +22 -0
  42. data/spec/mushikago/hanamgri/save_knowledge_request_spec.rb +22 -0
  43. data/spec/mushikago/hanamgri/schema_spec.rb +53 -0
  44. data/spec/mushikago/hanamgri/search_schema_request_spec.rb +22 -0
  45. data/spec/mushikago/hanamgri/train_spec.rb +31 -0
  46. data/spec/mushikago/hanamgri/update_domain_spec.rb +22 -0
  47. metadata +95 -109
  48. data/doc/Mushikago/Auth/Signature.html +0 -312
  49. data/doc/Mushikago/Auth/Signer.html +0 -465
  50. data/doc/Mushikago/Auth.html +0 -122
  51. data/doc/Mushikago/Config.html +0 -285
  52. data/doc/Mushikago/Hotaru/ClassifierJudgeRequest.html +0 -307
  53. data/doc/Mushikago/Hotaru/Client.html +0 -4174
  54. data/doc/Mushikago/Hotaru/CollocationCreateRequest.html +0 -375
  55. data/doc/Mushikago/Hotaru/CollocationDeleteRequest.html +0 -307
  56. data/doc/Mushikago/Hotaru/CollocationDownloadRequest.html +0 -307
  57. data/doc/Mushikago/Hotaru/CollocationGetRequest.html +0 -309
  58. data/doc/Mushikago/Hotaru/CollocationListRequest.html +0 -313
  59. data/doc/Mushikago/Hotaru/CollocationWordlistRequest.html +0 -313
  60. data/doc/Mushikago/Hotaru/DictionaryDeleteRequest.html +0 -305
  61. data/doc/Mushikago/Hotaru/DictionaryListRequest.html +0 -309
  62. data/doc/Mushikago/Hotaru/DictionaryPutRequest.html +0 -342
  63. data/doc/Mushikago/Hotaru/DomainCreateRequest.html +0 -313
  64. data/doc/Mushikago/Hotaru/DomainDeleteRequest.html +0 -305
  65. data/doc/Mushikago/Hotaru/DomainInfoRequest.html +0 -307
  66. data/doc/Mushikago/Hotaru/DomainListRequest.html +0 -311
  67. data/doc/Mushikago/Hotaru/TagDeleteRequest.html +0 -307
  68. data/doc/Mushikago/Hotaru/TagListRequest.html +0 -307
  69. data/doc/Mushikago/Hotaru/TagPutRequest.html +0 -307
  70. data/doc/Mushikago/Hotaru/TextDeleteRequest.html +0 -309
  71. data/doc/Mushikago/Hotaru/TextGetRequest.html +0 -307
  72. data/doc/Mushikago/Hotaru/TextListRequest.html +0 -315
  73. data/doc/Mushikago/Hotaru/TextPutRequest.html +0 -311
  74. data/doc/Mushikago/Hotaru/TextTagsetRequest.html +0 -311
  75. data/doc/Mushikago/Hotaru/WordGetRequest.html +0 -307
  76. data/doc/Mushikago/Hotaru/WordListRequest.html +0 -311
  77. data/doc/Mushikago/Hotaru.html +0 -120
  78. data/doc/Mushikago/Http/Client.html +0 -673
  79. data/doc/Mushikago/Http/DeleteRequest.html +0 -240
  80. data/doc/Mushikago/Http/GetRequest.html +0 -240
  81. data/doc/Mushikago/Http/MultipartPostRequest.html +0 -265
  82. data/doc/Mushikago/Http/MultipartPutRequest.html +0 -265
  83. data/doc/Mushikago/Http/MultipartRequest.html +0 -362
  84. data/doc/Mushikago/Http/PostRequest.html +0 -240
  85. data/doc/Mushikago/Http/PutRequest.html +0 -240
  86. data/doc/Mushikago/Http/Request.html +0 -1223
  87. data/doc/Mushikago/Http/Response.html +0 -840
  88. data/doc/Mushikago/Http.html +0 -120
  89. data/doc/Mushikago/Mitsubachi/Client.html +0 -3232
  90. data/doc/Mushikago/Mitsubachi/HttpFetchRequest.html +0 -319
  91. data/doc/Mushikago/Mitsubachi/HttpPushRequest.html +0 -321
  92. data/doc/Mushikago/Mitsubachi/Project.html +0 -742
  93. data/doc/Mushikago/Mitsubachi/ProjectCreateRequest.html +0 -317
  94. data/doc/Mushikago/Mitsubachi/ProjectDeleteRequest.html +0 -307
  95. data/doc/Mushikago/Mitsubachi/ProjectDiscontinueRequest.html +0 -305
  96. data/doc/Mushikago/Mitsubachi/ProjectInfoRequest.html +0 -307
  97. data/doc/Mushikago/Mitsubachi/ProjectListRequest.html +0 -309
  98. data/doc/Mushikago/Mitsubachi/ProjectQueuesRequest.html +0 -305
  99. data/doc/Mushikago/Mitsubachi/ProjectUpdateRequest.html +0 -315
  100. data/doc/Mushikago/Mitsubachi/Projects.html +0 -474
  101. data/doc/Mushikago/Mitsubachi/Resource.html +0 -569
  102. data/doc/Mushikago/Mitsubachi/ResourceDeleteRequest.html +0 -307
  103. data/doc/Mushikago/Mitsubachi/ResourceGetRequest.html +0 -307
  104. data/doc/Mushikago/Mitsubachi/ResourceListRequest.html +0 -311
  105. data/doc/Mushikago/Mitsubachi/ResourceStoreRequest.html +0 -346
  106. data/doc/Mushikago/Mitsubachi/Resources.html +0 -546
  107. data/doc/Mushikago/Mitsubachi/Script.html +0 -569
  108. data/doc/Mushikago/Mitsubachi/ScriptDeleteRequest.html +0 -307
  109. data/doc/Mushikago/Mitsubachi/ScriptDeployRequest.html +0 -342
  110. data/doc/Mushikago/Mitsubachi/ScriptGetRequest.html +0 -307
  111. data/doc/Mushikago/Mitsubachi/ScriptListRequest.html +0 -311
  112. data/doc/Mushikago/Mitsubachi/Scripts.html +0 -546
  113. data/doc/Mushikago/Mitsubachi.html +0 -120
  114. data/doc/Mushikago/Tombo/CaptureRequest.html +0 -454
  115. data/doc/Mushikago/Tombo/CapturesRequest.html +0 -417
  116. data/doc/Mushikago/Tombo/Client.html +0 -830
  117. data/doc/Mushikago/Tombo/DeleteRequest.html +0 -357
  118. data/doc/Mushikago/Tombo/InfoRequest.html +0 -338
  119. data/doc/Mushikago/Tombo.html +0 -120
  120. data/doc/Mushikago.html +0 -246
  121. data/doc/_index.html +0 -701
  122. data/doc/class_list.html +0 -47
  123. data/doc/css/common.css +0 -1
  124. data/doc/css/full_list.css +0 -55
  125. data/doc/css/style.css +0 -322
  126. data/doc/file.README.html +0 -250
  127. data/doc/file_list.html +0 -49
  128. data/doc/frames.html +0 -13
  129. data/doc/index.html +0 -250
  130. data/doc/js/app.js +0 -205
  131. data/doc/js/full_list.js +0 -167
  132. data/doc/js/jquery.js +0 -16
  133. data/doc/method_list.html +0 -1806
  134. data/doc/top-level-namespace.html +0 -103
@@ -1,742 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
- <title>
7
- Class: Mushikago::Mitsubachi::Project
8
-
9
- &mdash; Documentation by YARD 0.7.4
10
-
11
- </title>
12
-
13
- <link rel="stylesheet" href="../../css/style.css" type="text/css" media="screen" charset="utf-8" />
14
-
15
- <link rel="stylesheet" href="../../css/common.css" type="text/css" media="screen" charset="utf-8" />
16
-
17
- <script type="text/javascript" charset="utf-8">
18
- relpath = '../..';
19
- if (relpath != '') relpath += '/';
20
- </script>
21
-
22
- <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
23
-
24
- <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
25
-
26
-
27
- </head>
28
- <body>
29
- <script type="text/javascript" charset="utf-8">
30
- if (window.top.frames.main) document.body.className = 'frames';
31
- </script>
32
-
33
- <div id="header">
34
- <div id="menu">
35
-
36
- <a href="../../_index.html">Index (P)</a> &raquo;
37
- <span class='title'><span class='object_link'><a href="../../Mushikago.html" title="Mushikago (module)">Mushikago</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Mitsubachi.html" title="Mushikago::Mitsubachi (module)">Mitsubachi</a></span></span>
38
- &raquo;
39
- <span class="title">Project</span>
40
-
41
-
42
- <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
43
- </div>
44
-
45
- <div id="search">
46
-
47
- <a id="class_list_link" href="#">Class List</a>
48
-
49
- <a id="method_list_link" href="#">Method List</a>
50
-
51
- <a id="file_list_link" href="#">File List</a>
52
-
53
- </div>
54
- <div class="clear"></div>
55
- </div>
56
-
57
- <iframe id="search_frame"></iframe>
58
-
59
- <div id="content"><h1>Class: Mushikago::Mitsubachi::Project
60
-
61
-
62
-
63
- </h1>
64
-
65
- <dl class="box">
66
-
67
- <dt class="r1">Inherits:</dt>
68
- <dd class="r1">
69
- <span class="inheritName">Object</span>
70
-
71
- <ul class="fullTree">
72
- <li>Object</li>
73
-
74
- <li class="next">Mushikago::Mitsubachi::Project</li>
75
-
76
- </ul>
77
- <a href="#" class="inheritanceTree">show all</a>
78
-
79
- </dd>
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
- <dt class="r2 last">Defined in:</dt>
90
- <dd class="r2 last">lib/mushikago/mitsubachi/project.rb</dd>
91
-
92
- </dl>
93
- <div class="clear"></div>
94
-
95
-
96
-
97
- <h2>Instance Attribute Summary <small>(<a href="#" class="summary_toggle">collapse</a>)</small></h2>
98
- <ul class="summary">
99
-
100
- <li class="public ">
101
- <span class="summary_signature">
102
-
103
- <a href="#client-instance_method" title="#client (instance method)">- (Object) <strong>client</strong> </a>
104
-
105
-
106
-
107
- </span>
108
-
109
-
110
- <span class="note title readonly">readonly</span>
111
-
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
- <span class="summary_desc"><div class='inline'><p>
120
- Returns the value of attribute client.
121
- </p>
122
- </div></span>
123
-
124
- </li>
125
-
126
-
127
- <li class="public ">
128
- <span class="summary_signature">
129
-
130
- <a href="#project_name-instance_method" title="#project_name (instance method)">- (Object) <strong>project_name</strong> </a>
131
-
132
-
133
-
134
- </span>
135
-
136
-
137
- <span class="note title readonly">readonly</span>
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
-
146
- <span class="summary_desc"><div class='inline'><p>
147
- Returns the value of attribute project_name.
148
- </p>
149
- </div></span>
150
-
151
- </li>
152
-
153
-
154
- </ul>
155
-
156
-
157
-
158
-
159
-
160
- <h2>
161
- Instance Method Summary
162
- <small>(<a href="#" class="summary_toggle">collapse</a>)</small>
163
- </h2>
164
-
165
- <ul class="summary">
166
-
167
- <li class="public ">
168
- <span class="summary_signature">
169
-
170
- <a href="#delete-instance_method" title="#delete (instance method)">- (Object) <strong>delete</strong>(options = {}) </a>
171
-
172
-
173
-
174
- </span>
175
-
176
-
177
-
178
-
179
-
180
-
181
-
182
-
183
- <span class="summary_desc"><div class='inline'></div></span>
184
-
185
- </li>
186
-
187
-
188
- <li class="public ">
189
- <span class="summary_signature">
190
-
191
- <a href="#discontinue-instance_method" title="#discontinue (instance method)">- (Object) <strong>discontinue</strong>(options = {}) </a>
192
-
193
-
194
-
195
- </span>
196
-
197
-
198
-
199
-
200
-
201
-
202
-
203
-
204
- <span class="summary_desc"><div class='inline'></div></span>
205
-
206
- </li>
207
-
208
-
209
- <li class="public ">
210
- <span class="summary_signature">
211
-
212
- <a href="#info-instance_method" title="#info (instance method)">- (Object) <strong>info</strong>(options = {}) </a>
213
-
214
-
215
-
216
- </span>
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-
225
- <span class="summary_desc"><div class='inline'></div></span>
226
-
227
- </li>
228
-
229
-
230
- <li class="public ">
231
- <span class="summary_signature">
232
-
233
- <a href="#initialize-instance_method" title="#initialize (instance method)">- (Project) <strong>initialize</strong>(client, project_name) </a>
234
-
235
-
236
-
237
- </span>
238
-
239
- <span class="note title constructor">constructor</span>
240
-
241
-
242
-
243
-
244
-
245
-
246
-
247
-
248
- <span class="summary_desc"><div class='inline'><p>
249
- A new instance of Project.
250
- </p>
251
- </div></span>
252
-
253
- </li>
254
-
255
-
256
- <li class="public ">
257
- <span class="summary_signature">
258
-
259
- <a href="#queues-instance_method" title="#queues (instance method)">- (Object) <strong>queues</strong>(options = {}) </a>
260
-
261
-
262
-
263
- </span>
264
-
265
-
266
-
267
-
268
-
269
-
270
-
271
-
272
- <span class="summary_desc"><div class='inline'></div></span>
273
-
274
- </li>
275
-
276
-
277
- <li class="public ">
278
- <span class="summary_signature">
279
-
280
- <a href="#resources-instance_method" title="#resources (instance method)">- (Object) <strong>resources</strong> </a>
281
-
282
-
283
-
284
- </span>
285
-
286
-
287
-
288
-
289
-
290
-
291
-
292
-
293
- <span class="summary_desc"><div class='inline'></div></span>
294
-
295
- </li>
296
-
297
-
298
- <li class="public ">
299
- <span class="summary_signature">
300
-
301
- <a href="#scripts-instance_method" title="#scripts (instance method)">- (Object) <strong>scripts</strong> </a>
302
-
303
-
304
-
305
- </span>
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
-
314
- <span class="summary_desc"><div class='inline'></div></span>
315
-
316
- </li>
317
-
318
-
319
- <li class="public ">
320
- <span class="summary_signature">
321
-
322
- <a href="#to_s-instance_method" title="#to_s (instance method)">- (Object) <strong>to_s</strong> </a>
323
-
324
-
325
-
326
- </span>
327
-
328
-
329
-
330
-
331
-
332
-
333
-
334
-
335
- <span class="summary_desc"><div class='inline'></div></span>
336
-
337
- </li>
338
-
339
-
340
- <li class="public ">
341
- <span class="summary_signature">
342
-
343
- <a href="#update-instance_method" title="#update (instance method)">- (Object) <strong>update</strong>(options = {}) </a>
344
-
345
-
346
-
347
- </span>
348
-
349
-
350
-
351
-
352
-
353
-
354
-
355
-
356
- <span class="summary_desc"><div class='inline'></div></span>
357
-
358
- </li>
359
-
360
-
361
- </ul>
362
-
363
-
364
- <div id="constructor_details" class="method_details_list">
365
- <h2>Constructor Details</h2>
366
-
367
- <div class="method_details first">
368
- <p class="signature first" id="initialize-instance_method">
369
-
370
- - (<tt><span class='object_link'><a href="" title="Mushikago::Mitsubachi::Project (class)">Project</a></span></tt>) <strong>initialize</strong>(client, project_name)
371
-
372
-
373
-
374
- </p><div class="docstring">
375
- <div class="discussion">
376
- <p>
377
- A new instance of Project
378
- </p>
379
-
380
-
381
- </div>
382
- </div>
383
- <div class="tags">
384
-
385
-
386
- </div><table class="source_code">
387
- <tr>
388
- <td>
389
- <pre class="lines">
390
-
391
-
392
- 8
393
- 9
394
- 10
395
- 11</pre>
396
- </td>
397
- <td>
398
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 8</span>
399
-
400
- <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span> <span class='id identifier rubyid_client'>client</span><span class='comma'>,</span> <span class='id identifier rubyid_project_name'>project_name</span>
401
- <span class='ivar'>@client</span> <span class='op'>=</span> <span class='id identifier rubyid_client'>client</span>
402
- <span class='ivar'>@project_name</span> <span class='op'>=</span> <span class='id identifier rubyid_project_name'>project_name</span>
403
- <span class='kw'>end</span></pre>
404
- </td>
405
- </tr>
406
- </table>
407
- </div>
408
-
409
- </div>
410
-
411
- <div id="instance_attr_details" class="attr_details">
412
- <h2>Instance Attribute Details</h2>
413
-
414
-
415
- <span id=""></span>
416
- <span id="client-instance_method"></span>
417
- <div class="method_details first">
418
- <p class="signature first" id="client-instance_method">
419
-
420
- - (<tt>Object</tt>) <strong>client</strong> <span class="extras">(readonly)</span>
421
-
422
-
423
-
424
- </p><div class="docstring">
425
- <div class="discussion">
426
- <p>
427
- Returns the value of attribute client
428
- </p>
429
-
430
-
431
- </div>
432
- </div>
433
- <div class="tags">
434
-
435
-
436
- </div><table class="source_code">
437
- <tr>
438
- <td>
439
- <pre class="lines">
440
-
441
-
442
- 5
443
- 6
444
- 7</pre>
445
- </td>
446
- <td>
447
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 5</span>
448
-
449
- <span class='kw'>def</span> <span class='id identifier rubyid_client'>client</span>
450
- <span class='ivar'>@client</span>
451
- <span class='kw'>end</span></pre>
452
- </td>
453
- </tr>
454
- </table>
455
- </div>
456
-
457
-
458
- <span id=""></span>
459
- <span id="project_name-instance_method"></span>
460
- <div class="method_details ">
461
- <p class="signature " id="project_name-instance_method">
462
-
463
- - (<tt>Object</tt>) <strong>project_name</strong> <span class="extras">(readonly)</span>
464
-
465
-
466
-
467
- </p><div class="docstring">
468
- <div class="discussion">
469
- <p>
470
- Returns the value of attribute project_name
471
- </p>
472
-
473
-
474
- </div>
475
- </div>
476
- <div class="tags">
477
-
478
-
479
- </div><table class="source_code">
480
- <tr>
481
- <td>
482
- <pre class="lines">
483
-
484
-
485
- 6
486
- 7
487
- 8</pre>
488
- </td>
489
- <td>
490
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 6</span>
491
-
492
- <span class='kw'>def</span> <span class='id identifier rubyid_project_name'>project_name</span>
493
- <span class='ivar'>@project_name</span>
494
- <span class='kw'>end</span></pre>
495
- </td>
496
- </tr>
497
- </table>
498
- </div>
499
-
500
- </div>
501
-
502
-
503
- <div id="instance_method_details" class="method_details_list">
504
- <h2>Instance Method Details</h2>
505
-
506
-
507
- <div class="method_details first">
508
- <p class="signature first" id="delete-instance_method">
509
-
510
- - (<tt>Object</tt>) <strong>delete</strong>(options = {})
511
-
512
-
513
-
514
- </p><table class="source_code">
515
- <tr>
516
- <td>
517
- <pre class="lines">
518
-
519
-
520
- 29
521
- 30
522
- 31</pre>
523
- </td>
524
- <td>
525
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 29</span>
526
-
527
- <span class='kw'>def</span> <span class='id identifier rubyid_delete'>delete</span> <span class='id identifier rubyid_options'>options</span><span class='op'>=</span><span class='lbrace'>{</span><span class='rbrace'>}</span>
528
- <span class='id identifier rubyid_client'>client</span><span class='period'>.</span><span class='id identifier rubyid_project_delete'>project_delete</span><span class='lparen'>(</span><span class='id identifier rubyid_project_name'>project_name</span><span class='comma'>,</span> <span class='id identifier rubyid_options'>options</span><span class='rparen'>)</span>
529
- <span class='kw'>end</span></pre>
530
- </td>
531
- </tr>
532
- </table>
533
- </div>
534
-
535
- <div class="method_details ">
536
- <p class="signature " id="discontinue-instance_method">
537
-
538
- - (<tt>Object</tt>) <strong>discontinue</strong>(options = {})
539
-
540
-
541
-
542
- </p><table class="source_code">
543
- <tr>
544
- <td>
545
- <pre class="lines">
546
-
547
-
548
- 37
549
- 38
550
- 39</pre>
551
- </td>
552
- <td>
553
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 37</span>
554
-
555
- <span class='kw'>def</span> <span class='id identifier rubyid_discontinue'>discontinue</span> <span class='id identifier rubyid_options'>options</span><span class='op'>=</span><span class='lbrace'>{</span><span class='rbrace'>}</span>
556
- <span class='id identifier rubyid_client'>client</span><span class='period'>.</span><span class='id identifier rubyid_project_discontinue'>project_discontinue</span><span class='lparen'>(</span><span class='id identifier rubyid_project_name'>project_name</span><span class='comma'>,</span> <span class='id identifier rubyid_options'>options</span><span class='rparen'>)</span>
557
- <span class='kw'>end</span></pre>
558
- </td>
559
- </tr>
560
- </table>
561
- </div>
562
-
563
- <div class="method_details ">
564
- <p class="signature " id="info-instance_method">
565
-
566
- - (<tt>Object</tt>) <strong>info</strong>(options = {})
567
-
568
-
569
-
570
- </p><table class="source_code">
571
- <tr>
572
- <td>
573
- <pre class="lines">
574
-
575
-
576
- 25
577
- 26
578
- 27</pre>
579
- </td>
580
- <td>
581
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 25</span>
582
-
583
- <span class='kw'>def</span> <span class='id identifier rubyid_info'>info</span> <span class='id identifier rubyid_options'>options</span><span class='op'>=</span><span class='lbrace'>{</span><span class='rbrace'>}</span>
584
- <span class='id identifier rubyid_client'>client</span><span class='period'>.</span><span class='id identifier rubyid_project_info'>project_info</span><span class='lparen'>(</span><span class='id identifier rubyid_project_name'>project_name</span><span class='comma'>,</span> <span class='id identifier rubyid_options'>options</span><span class='rparen'>)</span>
585
- <span class='kw'>end</span></pre>
586
- </td>
587
- </tr>
588
- </table>
589
- </div>
590
-
591
- <div class="method_details ">
592
- <p class="signature " id="queues-instance_method">
593
-
594
- - (<tt>Object</tt>) <strong>queues</strong>(options = {})
595
-
596
-
597
-
598
- </p><table class="source_code">
599
- <tr>
600
- <td>
601
- <pre class="lines">
602
-
603
-
604
- 21
605
- 22
606
- 23</pre>
607
- </td>
608
- <td>
609
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 21</span>
610
-
611
- <span class='kw'>def</span> <span class='id identifier rubyid_queues'>queues</span> <span class='id identifier rubyid_options'>options</span><span class='op'>=</span><span class='lbrace'>{</span><span class='rbrace'>}</span>
612
- <span class='id identifier rubyid_client'>client</span><span class='period'>.</span><span class='id identifier rubyid_project_queues'>project_queues</span><span class='lparen'>(</span><span class='id identifier rubyid_project_name'>project_name</span><span class='comma'>,</span> <span class='id identifier rubyid_options'>options</span><span class='rparen'>)</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>count</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span>
613
- <span class='kw'>end</span></pre>
614
- </td>
615
- </tr>
616
- </table>
617
- </div>
618
-
619
- <div class="method_details ">
620
- <p class="signature " id="resources-instance_method">
621
-
622
- - (<tt>Object</tt>) <strong>resources</strong>
623
-
624
-
625
-
626
- </p><table class="source_code">
627
- <tr>
628
- <td>
629
- <pre class="lines">
630
-
631
-
632
- 13
633
- 14
634
- 15</pre>
635
- </td>
636
- <td>
637
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 13</span>
638
-
639
- <span class='kw'>def</span> <span class='id identifier rubyid_resources'>resources</span>
640
- <span class='const'>Resources</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span><span class='id identifier rubyid_client'>client</span><span class='comma'>,</span> <span class='id identifier rubyid_project_name'>project_name</span><span class='rparen'>)</span>
641
- <span class='kw'>end</span></pre>
642
- </td>
643
- </tr>
644
- </table>
645
- </div>
646
-
647
- <div class="method_details ">
648
- <p class="signature " id="scripts-instance_method">
649
-
650
- - (<tt>Object</tt>) <strong>scripts</strong>
651
-
652
-
653
-
654
- </p><table class="source_code">
655
- <tr>
656
- <td>
657
- <pre class="lines">
658
-
659
-
660
- 17
661
- 18
662
- 19</pre>
663
- </td>
664
- <td>
665
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 17</span>
666
-
667
- <span class='kw'>def</span> <span class='id identifier rubyid_scripts'>scripts</span>
668
- <span class='const'>Scripts</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span><span class='id identifier rubyid_client'>client</span><span class='comma'>,</span> <span class='id identifier rubyid_project_name'>project_name</span><span class='rparen'>)</span>
669
- <span class='kw'>end</span></pre>
670
- </td>
671
- </tr>
672
- </table>
673
- </div>
674
-
675
- <div class="method_details ">
676
- <p class="signature " id="to_s-instance_method">
677
-
678
- - (<tt>Object</tt>) <strong>to_s</strong>
679
-
680
-
681
-
682
- </p><table class="source_code">
683
- <tr>
684
- <td>
685
- <pre class="lines">
686
-
687
-
688
- 41
689
- 42
690
- 43</pre>
691
- </td>
692
- <td>
693
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 41</span>
694
-
695
- <span class='kw'>def</span> <span class='id identifier rubyid_to_s'>to_s</span>
696
- <span class='id identifier rubyid_project_name'>project_name</span>
697
- <span class='kw'>end</span></pre>
698
- </td>
699
- </tr>
700
- </table>
701
- </div>
702
-
703
- <div class="method_details ">
704
- <p class="signature " id="update-instance_method">
705
-
706
- - (<tt>Object</tt>) <strong>update</strong>(options = {})
707
-
708
-
709
-
710
- </p><table class="source_code">
711
- <tr>
712
- <td>
713
- <pre class="lines">
714
-
715
-
716
- 33
717
- 34
718
- 35</pre>
719
- </td>
720
- <td>
721
- <pre class="code"><span class="info file"># File 'lib/mushikago/mitsubachi/project.rb', line 33</span>
722
-
723
- <span class='kw'>def</span> <span class='id identifier rubyid_update'>update</span> <span class='id identifier rubyid_options'>options</span><span class='op'>=</span><span class='lbrace'>{</span><span class='rbrace'>}</span>
724
- <span class='id identifier rubyid_client'>client</span><span class='period'>.</span><span class='id identifier rubyid_project_update'>project_update</span><span class='lparen'>(</span><span class='id identifier rubyid_project_name'>project_name</span><span class='comma'>,</span> <span class='id identifier rubyid_options'>options</span><span class='rparen'>)</span>
725
- <span class='kw'>end</span></pre>
726
- </td>
727
- </tr>
728
- </table>
729
- </div>
730
-
731
- </div>
732
-
733
- </div>
734
-
735
- <div id="footer">
736
- Generated on Thu Apr 26 10:56:48 2012 by
737
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
738
- 0.7.4 (ruby-1.9.2).
739
- </div>
740
-
741
- </body>
742
- </html>