esp_sdk 1.1.0 → 2.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (199) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -2
  3. data/.rubocop.yml +53 -6
  4. data/.ruby-version +1 -1
  5. data/.travis.yml +8 -2
  6. data/Gemfile.lock +171 -0
  7. data/Guardfile +47 -0
  8. data/README.md +230 -5
  9. data/Rakefile +14 -1
  10. data/assets/logo.png +0 -0
  11. data/bin/esp_console +71 -0
  12. data/esp_sdk.gemspec +27 -18
  13. data/lib/esp/exceptions.rb +3 -0
  14. data/lib/esp/extensions/active_resource/formats/json_api_format.rb +105 -0
  15. data/lib/esp/extensions/active_resource/paginated_collection.rb +198 -0
  16. data/lib/esp/extensions/active_resource/validations.rb +45 -0
  17. data/lib/esp/resources/alert.rb +135 -0
  18. data/lib/esp/resources/cloud_trail_event.rb +45 -0
  19. data/lib/esp/resources/concerns/stat_totals.rb +79 -0
  20. data/lib/esp/resources/contact_request.rb +42 -0
  21. data/lib/esp/resources/custom_signature.rb +224 -0
  22. data/lib/esp/resources/dashboard.rb +31 -0
  23. data/lib/esp/resources/external_account.rb +89 -0
  24. data/lib/esp/resources/organization.rb +61 -0
  25. data/lib/esp/resources/region.rb +46 -0
  26. data/lib/esp/resources/report.rb +100 -0
  27. data/lib/esp/resources/resource.rb +66 -0
  28. data/lib/esp/resources/service.rb +31 -0
  29. data/lib/esp/resources/signature.rb +106 -0
  30. data/lib/esp/resources/stat.rb +124 -0
  31. data/lib/esp/resources/stat_custom_signature.rb +121 -0
  32. data/lib/esp/resources/stat_region.rb +121 -0
  33. data/lib/esp/resources/stat_service.rb +121 -0
  34. data/lib/esp/resources/stat_signature.rb +121 -0
  35. data/lib/esp/resources/sub_organization.rb +69 -0
  36. data/lib/esp/resources/suppression/region.rb +99 -0
  37. data/lib/esp/resources/suppression/signature.rb +107 -0
  38. data/lib/esp/resources/suppression/unique_identifier.rb +60 -0
  39. data/lib/esp/resources/suppression.rb +86 -0
  40. data/lib/esp/resources/tag.rb +45 -0
  41. data/lib/esp/resources/team.rb +79 -0
  42. data/lib/esp/resources/user.rb +46 -0
  43. data/lib/esp/version.rb +3 -0
  44. data/lib/esp.rb +95 -0
  45. data/lib/esp_sdk.rb +9 -45
  46. data/lib/tasks/rubocop.rake +2 -0
  47. data/lib/tasks/testing.rake +3 -0
  48. data/rdoc/ActiveResource/Formats.html +176 -0
  49. data/rdoc/ActiveResource/PaginatedCollection.html +910 -0
  50. data/rdoc/ActiveResource.html +180 -0
  51. data/rdoc/ESP/Alert.html +771 -0
  52. data/rdoc/ESP/CloudTrailEvent.html +375 -0
  53. data/rdoc/ESP/ContactRequest.html +366 -0
  54. data/rdoc/ESP/CustomSignature.html +746 -0
  55. data/rdoc/ESP/Dashboard.html +355 -0
  56. data/rdoc/ESP/ExternalAccount.html +565 -0
  57. data/rdoc/ESP/Organization.html +590 -0
  58. data/rdoc/ESP/Region.html +399 -0
  59. data/rdoc/ESP/Report.html +622 -0
  60. data/rdoc/ESP/Service.html +380 -0
  61. data/rdoc/ESP/Signature.html +555 -0
  62. data/rdoc/ESP/Stat.html +1778 -0
  63. data/rdoc/ESP/StatCustomSignature.html +1599 -0
  64. data/rdoc/ESP/StatRegion.html +1598 -0
  65. data/rdoc/ESP/StatService.html +1598 -0
  66. data/rdoc/ESP/StatSignature.html +1598 -0
  67. data/rdoc/ESP/SubOrganization.html +540 -0
  68. data/rdoc/ESP/Suppression/Region.html +454 -0
  69. data/rdoc/ESP/Suppression/Signature.html +470 -0
  70. data/rdoc/ESP/Suppression/UniqueIdentifier.html +417 -0
  71. data/rdoc/ESP/Suppression.html +649 -0
  72. data/rdoc/ESP/Tag.html +371 -0
  73. data/rdoc/ESP/Team.html +584 -0
  74. data/rdoc/ESP/User.html +483 -0
  75. data/rdoc/ESP.html +546 -0
  76. data/rdoc/README_md.html +501 -0
  77. data/rdoc/created.rid +30 -0
  78. data/rdoc/images/add.png +0 -0
  79. data/rdoc/images/arrow_up.png +0 -0
  80. data/rdoc/images/brick.png +0 -0
  81. data/rdoc/images/brick_link.png +0 -0
  82. data/rdoc/images/bug.png +0 -0
  83. data/rdoc/images/bullet_black.png +0 -0
  84. data/rdoc/images/bullet_toggle_minus.png +0 -0
  85. data/rdoc/images/bullet_toggle_plus.png +0 -0
  86. data/rdoc/images/date.png +0 -0
  87. data/rdoc/images/delete.png +0 -0
  88. data/rdoc/images/find.png +0 -0
  89. data/rdoc/images/loadingAnimation.gif +0 -0
  90. data/rdoc/images/macFFBgHack.png +0 -0
  91. data/rdoc/images/package.png +0 -0
  92. data/rdoc/images/page_green.png +0 -0
  93. data/rdoc/images/page_white_text.png +0 -0
  94. data/rdoc/images/page_white_width.png +0 -0
  95. data/rdoc/images/plugin.png +0 -0
  96. data/rdoc/images/ruby.png +0 -0
  97. data/rdoc/images/tag_blue.png +0 -0
  98. data/rdoc/images/tag_green.png +0 -0
  99. data/rdoc/images/transparent.png +0 -0
  100. data/rdoc/images/wrench.png +0 -0
  101. data/rdoc/images/wrench_orange.png +0 -0
  102. data/rdoc/images/zoom.png +0 -0
  103. data/rdoc/index.html +134 -0
  104. data/rdoc/js/darkfish.js +155 -0
  105. data/rdoc/js/jquery.js +4 -0
  106. data/rdoc/js/navigation.js +142 -0
  107. data/rdoc/js/search.js +94 -0
  108. data/rdoc/js/search_index.js +1 -0
  109. data/rdoc/js/searcher.js +228 -0
  110. data/rdoc/rdoc.css +595 -0
  111. data/rdoc/table_of_contents.html +927 -0
  112. data/test/esp/extensions/active_resource/formats/json_api_format_test.rb +109 -0
  113. data/test/esp/extensions/active_resource/paginated_collection_test.rb +435 -0
  114. data/test/esp/extensions/active_resource/validations_test.rb +59 -0
  115. data/test/esp/resources/alert_test.rb +263 -0
  116. data/test/esp/resources/cloud_trail_event_test.rb +98 -0
  117. data/test/esp/resources/contact_request_test.rb +73 -0
  118. data/test/esp/resources/custom_signature_test.rb +241 -0
  119. data/test/esp/resources/dashboard_test.rb +71 -0
  120. data/test/esp/resources/external_account_test.rb +125 -0
  121. data/test/esp/resources/organization_test.rb +175 -0
  122. data/test/esp/resources/region_test.rb +84 -0
  123. data/test/esp/resources/report_test.rb +180 -0
  124. data/test/esp/resources/resource_test.rb +183 -0
  125. data/test/esp/resources/service_test.rb +64 -0
  126. data/test/esp/resources/signature_test.rb +177 -0
  127. data/test/esp/resources/stat_custom_signature_test.rb +115 -0
  128. data/test/esp/resources/stat_region_test.rb +114 -0
  129. data/test/esp/resources/stat_service_test.rb +114 -0
  130. data/test/esp/resources/stat_signature_test.rb +115 -0
  131. data/test/esp/resources/stat_test.rb +159 -0
  132. data/test/esp/resources/sub_organization_test.rb +127 -0
  133. data/test/esp/resources/suppression/region_test.rb +115 -0
  134. data/test/esp/resources/suppression/signature_test.rb +117 -0
  135. data/test/esp/resources/suppression/unique_identifier_test.rb +79 -0
  136. data/test/esp/resources/suppression_test.rb +226 -0
  137. data/test/esp/resources/tag_test.rb +98 -0
  138. data/test/esp/resources/team_test.rb +140 -0
  139. data/test/esp/resources/user_test.rb +113 -0
  140. data/test/esp_test.rb +139 -0
  141. data/test/factories/alerts.rb +234 -0
  142. data/test/factories/cloud_trail_events.rb +16 -0
  143. data/test/factories/contact_requests.rb +14 -0
  144. data/test/factories/custom_signatures.rb +30 -0
  145. data/test/factories/dashboards.rb +91 -0
  146. data/test/factories/errors.rb +24 -0
  147. data/test/factories/external_accounts.rb +44 -0
  148. data/test/factories/organizations.rb +48 -0
  149. data/test/factories/regions.rb +9 -0
  150. data/test/factories/reports.rb +56 -0
  151. data/test/factories/services.rb +12 -0
  152. data/test/factories/signatures.rb +28 -0
  153. data/test/factories/stat_custom_signatures.rb +97 -0
  154. data/test/factories/stat_regions.rb +97 -0
  155. data/test/factories/stat_services.rb +97 -0
  156. data/test/factories/stat_signautures.rb +97 -0
  157. data/test/factories/stats.rb +129 -0
  158. data/test/factories/sub_organizations.rb +34 -0
  159. data/test/factories/suppression/regions.rb +90 -0
  160. data/test/factories/suppression/signatures.rb +117 -0
  161. data/test/factories/suppression/unique_identifiers.rb +111 -0
  162. data/test/factories/suppressions.rb +71 -0
  163. data/test/factories/tags.rb +12 -0
  164. data/test/factories/teams.rb +32 -0
  165. data/test/factories/users.rb +54 -0
  166. data/test/json_strategy.rb +25 -0
  167. data/test/test_helper.rb +44 -5
  168. metadata +387 -119
  169. data/bin/esp_repl +0 -60
  170. data/lib/esp_sdk/api.rb +0 -33
  171. data/lib/esp_sdk/client.rb +0 -62
  172. data/lib/esp_sdk/configure.rb +0 -40
  173. data/lib/esp_sdk/end_points/base.rb +0 -102
  174. data/lib/esp_sdk/end_points/contact_requests.rb +0 -6
  175. data/lib/esp_sdk/end_points/custom_signatures.rb +0 -41
  176. data/lib/esp_sdk/end_points/dashboard.rb +0 -35
  177. data/lib/esp_sdk/end_points/external_accounts.rb +0 -9
  178. data/lib/esp_sdk/end_points/organizations.rb +0 -6
  179. data/lib/esp_sdk/end_points/reports.rb +0 -6
  180. data/lib/esp_sdk/end_points/services.rb +0 -6
  181. data/lib/esp_sdk/end_points/signatures.rb +0 -39
  182. data/lib/esp_sdk/end_points/sub_organizations.rb +0 -6
  183. data/lib/esp_sdk/end_points/teams.rb +0 -6
  184. data/lib/esp_sdk/end_points/users.rb +0 -6
  185. data/lib/esp_sdk/exceptions.rb +0 -8
  186. data/lib/esp_sdk/extensions/rest_client/request.rb +0 -9
  187. data/lib/esp_sdk/repl.rb +0 -61
  188. data/lib/esp_sdk/version.rb +0 -3
  189. data/test/esp_sdk/api_test.rb +0 -36
  190. data/test/esp_sdk/client_test.rb +0 -129
  191. data/test/esp_sdk/configure_test.rb +0 -65
  192. data/test/esp_sdk/end_points/.keep +0 -0
  193. data/test/esp_sdk/end_points/base_test.rb +0 -230
  194. data/test/esp_sdk/end_points/custom_signatures_test.rb +0 -90
  195. data/test/esp_sdk/end_points/dashboard_test.rb +0 -55
  196. data/test/esp_sdk/end_points/external_accounts_test.rb +0 -20
  197. data/test/esp_sdk/end_points/signatures_test.rb +0 -83
  198. data/test/esp_sdk/exceptions_test.rb +0 -41
  199. data/test/esp_sdk_test.rb +0 -70
@@ -0,0 +1,1598 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class ESP::StatSignature - ESPSDK</title>
8
+
9
+ <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="class">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../index.html">Home</a>
28
+ <a href="../table_of_contents.html#classes">Classes</a>
29
+ <a href="../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+
47
+
48
+ <div id="file-metadata">
49
+ <nav id="file-list-section" class="section">
50
+ <h3 class="section-header">Defined In</h3>
51
+ <ul>
52
+ <li>lib/esp/resources/stat_signature.rb
53
+ </ul>
54
+ </nav>
55
+
56
+
57
+ </div>
58
+
59
+ <div id="class-metadata">
60
+ <nav id="sections-section" class="section">
61
+ <h3 class="section-header">Sections</h3>
62
+ <ul class="link-list">
63
+
64
+ <li><a href="#5Buntitled-5D"></a></li>
65
+
66
+ <li><a href="#27total-27+rollup+methods">&#39;total&#39; rollup methods</a></li>
67
+
68
+ </ul>
69
+ </nav>
70
+
71
+ <nav id="parent-class-section" class="section">
72
+ <h3 class="section-header">Parent</h3>
73
+
74
+ <p class="link">ESP::Resource
75
+
76
+ </nav>
77
+
78
+
79
+
80
+ <!-- Method Quickref -->
81
+ <nav id="method-list-section" class="section">
82
+ <h3 class="section-header">Methods</h3>
83
+
84
+ <ul class="link-list">
85
+
86
+ <li ><a href="#method-c-create">::create</a>
87
+
88
+ <li class="calls-super" ><a href="#method-c-find">::find</a>
89
+
90
+ <li ><a href="#method-c-for_stat">::for_stat</a>
91
+
92
+ <li ><a href="#method-i-destroy">#destroy</a>
93
+
94
+ <li ><a href="#method-i-save">#save</a>
95
+
96
+ <li ><a href="#method-i-total">#total</a>
97
+
98
+ <li ><a href="#method-i-total_error">#total_error</a>
99
+
100
+ <li ><a href="#method-i-total_fail">#total_fail</a>
101
+
102
+ <li ><a href="#method-i-total_info">#total_info</a>
103
+
104
+ <li ><a href="#method-i-total_new_1d">#total_new_1d</a>
105
+
106
+ <li ><a href="#method-i-total_new_1d_error">#total_new_1d_error</a>
107
+
108
+ <li ><a href="#method-i-total_new_1d_fail">#total_new_1d_fail</a>
109
+
110
+ <li ><a href="#method-i-total_new_1d_info">#total_new_1d_info</a>
111
+
112
+ <li ><a href="#method-i-total_new_1d_pass">#total_new_1d_pass</a>
113
+
114
+ <li ><a href="#method-i-total_new_1d_warn">#total_new_1d_warn</a>
115
+
116
+ <li ><a href="#method-i-total_new_1h">#total_new_1h</a>
117
+
118
+ <li ><a href="#method-i-total_new_1h_error">#total_new_1h_error</a>
119
+
120
+ <li ><a href="#method-i-total_new_1h_fail">#total_new_1h_fail</a>
121
+
122
+ <li ><a href="#method-i-total_new_1h_info">#total_new_1h_info</a>
123
+
124
+ <li ><a href="#method-i-total_new_1h_pass">#total_new_1h_pass</a>
125
+
126
+ <li ><a href="#method-i-total_new_1h_warn">#total_new_1h_warn</a>
127
+
128
+ <li ><a href="#method-i-total_new_1w">#total_new_1w</a>
129
+
130
+ <li ><a href="#method-i-total_new_1w_error">#total_new_1w_error</a>
131
+
132
+ <li ><a href="#method-i-total_new_1w_fail">#total_new_1w_fail</a>
133
+
134
+ <li ><a href="#method-i-total_new_1w_info">#total_new_1w_info</a>
135
+
136
+ <li ><a href="#method-i-total_new_1w_pass">#total_new_1w_pass</a>
137
+
138
+ <li ><a href="#method-i-total_new_1w_warn">#total_new_1w_warn</a>
139
+
140
+ <li ><a href="#method-i-total_old">#total_old</a>
141
+
142
+ <li ><a href="#method-i-total_old_error">#total_old_error</a>
143
+
144
+ <li ><a href="#method-i-total_old_fail">#total_old_fail</a>
145
+
146
+ <li ><a href="#method-i-total_old_info">#total_old_info</a>
147
+
148
+ <li ><a href="#method-i-total_old_pass">#total_old_pass</a>
149
+
150
+ <li ><a href="#method-i-total_old_warn">#total_old_warn</a>
151
+
152
+ <li ><a href="#method-i-total_pass">#total_pass</a>
153
+
154
+ <li ><a href="#method-i-total_suppressed">#total_suppressed</a>
155
+
156
+ <li ><a href="#method-i-total_suppressed_error">#total_suppressed_error</a>
157
+
158
+ <li ><a href="#method-i-total_suppressed_fail">#total_suppressed_fail</a>
159
+
160
+ <li ><a href="#method-i-total_suppressed_pass">#total_suppressed_pass</a>
161
+
162
+ <li ><a href="#method-i-total_suppressed_warn">#total_suppressed_warn</a>
163
+
164
+ <li ><a href="#method-i-total_warn">#total_warn</a>
165
+
166
+ </ul>
167
+ </nav>
168
+
169
+ </div>
170
+
171
+ <div id="project-metadata">
172
+ <nav id="fileindex-section" class="section project-section">
173
+ <h3 class="section-header">Pages</h3>
174
+
175
+ <ul>
176
+
177
+ <li class="file"><a href="../README_md.html">README</a>
178
+
179
+ </ul>
180
+ </nav>
181
+
182
+ <nav id="classindex-section" class="section project-section">
183
+ <h3 class="section-header">Class and Module Index</h3>
184
+
185
+ <ul class="link-list">
186
+
187
+ <li><a href="../ActiveResource.html">ActiveResource</a>
188
+
189
+ <li><a href="../ActiveResource/Formats.html">ActiveResource::Formats</a>
190
+
191
+ <li><a href="../ActiveResource/PaginatedCollection.html">ActiveResource::PaginatedCollection</a>
192
+
193
+ <li><a href="../ESP.html">ESP</a>
194
+
195
+ <li><a href="../ESP/Alert.html">ESP::Alert</a>
196
+
197
+ <li><a href="../ESP/CloudTrailEvent.html">ESP::CloudTrailEvent</a>
198
+
199
+ <li><a href="../ESP/ContactRequest.html">ESP::ContactRequest</a>
200
+
201
+ <li><a href="../ESP/CustomSignature.html">ESP::CustomSignature</a>
202
+
203
+ <li><a href="../ESP/Dashboard.html">ESP::Dashboard</a>
204
+
205
+ <li><a href="../ESP/ExternalAccount.html">ESP::ExternalAccount</a>
206
+
207
+ <li><a href="../ESP/Organization.html">ESP::Organization</a>
208
+
209
+ <li><a href="../ESP/Region.html">ESP::Region</a>
210
+
211
+ <li><a href="../ESP/Report.html">ESP::Report</a>
212
+
213
+ <li><a href="../ESP/Service.html">ESP::Service</a>
214
+
215
+ <li><a href="../ESP/Signature.html">ESP::Signature</a>
216
+
217
+ <li><a href="../ESP/Stat.html">ESP::Stat</a>
218
+
219
+ <li><a href="../ESP/StatCustomSignature.html">ESP::StatCustomSignature</a>
220
+
221
+ <li><a href="../ESP/StatRegion.html">ESP::StatRegion</a>
222
+
223
+ <li><a href="../ESP/StatService.html">ESP::StatService</a>
224
+
225
+ <li><a href="../ESP/StatSignature.html">ESP::StatSignature</a>
226
+
227
+ <li><a href="../ESP/SubOrganization.html">ESP::SubOrganization</a>
228
+
229
+ <li><a href="../ESP/Suppression.html">ESP::Suppression</a>
230
+
231
+ <li><a href="../ESP/Suppression/Region.html">ESP::Suppression::Region</a>
232
+
233
+ <li><a href="../ESP/Suppression/Signature.html">ESP::Suppression::Signature</a>
234
+
235
+ <li><a href="../ESP/Suppression/UniqueIdentifier.html">ESP::Suppression::UniqueIdentifier</a>
236
+
237
+ <li><a href="../ESP/Tag.html">ESP::Tag</a>
238
+
239
+ <li><a href="../ESP/Team.html">ESP::Team</a>
240
+
241
+ <li><a href="../ESP/User.html">ESP::User</a>
242
+
243
+ </ul>
244
+ </nav>
245
+
246
+ </div>
247
+ </nav>
248
+
249
+ <div id="documentation">
250
+ <h1 class="class">class ESP::StatSignature</h1>
251
+
252
+ <div id="description" class="description">
253
+
254
+ </div><!-- description -->
255
+
256
+
257
+
258
+
259
+ <section id="5Buntitled-5D" class="documentation-section">
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+ <!-- Methods -->
269
+
270
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section section">
271
+ <h3 class="section-header">Public Class Methods</h3>
272
+
273
+
274
+ <div id="method-c-create" class="method-detail ">
275
+
276
+ <div class="method-heading">
277
+ <span class="method-name">create</span><span
278
+ class="method-args">()</span>
279
+
280
+ <span class="method-click-advice">click to toggle source</span>
281
+
282
+ </div>
283
+
284
+
285
+ <div class="method-description">
286
+
287
+ <p>Not Implemented. You cannot create a <a href="Stat.html">Stat</a>.</p>
288
+
289
+
290
+
291
+
292
+ <div class="method-source-code" id="create-source">
293
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 43</span>
294
+ </pre>
295
+ </div><!-- create-source -->
296
+
297
+ </div>
298
+
299
+
300
+
301
+
302
+ </div><!-- create-method -->
303
+
304
+
305
+ <div id="method-c-find" class="method-detail ">
306
+
307
+
308
+ <div class="method-heading">
309
+ <span class="method-callseq">
310
+ find(id)
311
+ </span>
312
+
313
+ <span class="method-click-advice">click to toggle source</span>
314
+
315
+ </div>
316
+
317
+
318
+
319
+ <div class="method-description">
320
+
321
+ <p>Find a <a href="StatRegion.html">StatRegion</a> by id</p>
322
+
323
+ <h4 id="method-c-find-label-Parameter">Parameter<span><a href="#method-c-find-label-Parameter">&para;</a> <a href="#documentation">&uarr;</a></span></h4>
324
+
325
+ <p><code>id</code> | Required | The ID of the signature stat to retrieve</p>
326
+
327
+
328
+ <div class="method-calls-super">
329
+ Calls superclass method
330
+
331
+ </div>
332
+
333
+
334
+
335
+ <div class="method-source-code" id="find-source">
336
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 31</span>
337
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">find</span>(<span class="ruby-operator">*</span><span class="ruby-identifier">arguments</span>)
338
+ <span class="ruby-identifier">scope</span> = <span class="ruby-identifier">arguments</span>.<span class="ruby-identifier">slice!</span>(<span class="ruby-value">0</span>)
339
+ <span class="ruby-identifier">options</span> = (<span class="ruby-identifier">arguments</span>.<span class="ruby-identifier">slice!</span>(<span class="ruby-value">0</span>) <span class="ruby-operator">||</span> {}).<span class="ruby-identifier">with_indifferent_access</span>
340
+ <span class="ruby-keyword">return</span> <span class="ruby-keyword">super</span>(<span class="ruby-identifier">scope</span>, <span class="ruby-identifier">options</span>) <span class="ruby-keyword">if</span> <span class="ruby-identifier">scope</span>.<span class="ruby-identifier">is_a?</span>(<span class="ruby-constant">Numeric</span>) <span class="ruby-operator">||</span> <span class="ruby-identifier">options</span>[<span class="ruby-value">:from</span>].<span class="ruby-identifier">present?</span>
341
+ <span class="ruby-identifier">params</span> = <span class="ruby-identifier">options</span>.<span class="ruby-identifier">fetch</span>(<span class="ruby-value">:params</span>, {}).<span class="ruby-identifier">with_indifferent_access</span>
342
+ <span class="ruby-identifier">stat_id</span> = <span class="ruby-identifier">params</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-value">:stat_id</span>)
343
+ <span class="ruby-identifier">for_stat</span>(<span class="ruby-identifier">stat_id</span>)
344
+ <span class="ruby-keyword">end</span></pre>
345
+ </div><!-- find-source -->
346
+
347
+ </div>
348
+
349
+
350
+
351
+
352
+ </div><!-- find-method -->
353
+
354
+
355
+ <div id="method-c-for_stat" class="method-detail ">
356
+
357
+ <div class="method-heading">
358
+ <span class="method-name">for_stat</span><span
359
+ class="method-args">(stat_id = nil)</span>
360
+
361
+ <span class="method-click-advice">click to toggle source</span>
362
+
363
+ </div>
364
+
365
+
366
+ <div class="method-description">
367
+
368
+ <p>Returns a paginated collection of signature stats for the given stat_id
369
+ Convenience method to use instead of <a
370
+ href="StatSignature.html#method-c-find">::find</a> since a stat_id is
371
+ required to return signature stats.</p>
372
+
373
+ <h4 id="method-c-for_stat-label-Parameter">Parameter<span><a href="#method-c-for_stat-label-Parameter">&para;</a> <a href="#documentation">&uarr;</a></span></h4>
374
+
375
+ <p><code>stat_id</code> | Required | The ID of the stat to list signature
376
+ stats for</p>
377
+
378
+ <h4 id="method-c-for_stat-label-Example">Example<span><a href="#method-c-for_stat-label-Example">&para;</a> <a href="#documentation">&uarr;</a></span></h4>
379
+
380
+ <pre>stats = ESP::StatSignature.for_stat(1194)</pre>
381
+
382
+
383
+
384
+
385
+ <div class="method-source-code" id="for_stat-source">
386
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 17</span>
387
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">for_stat</span>(<span class="ruby-identifier">stat_id</span> = <span class="ruby-keyword">nil</span>)
388
+ <span class="ruby-identifier">fail</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-string">&quot;You must supply a stat id.&quot;</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">stat_id</span>.<span class="ruby-identifier">present?</span>
389
+ <span class="ruby-identifier">from</span> = <span class="ruby-node">&quot;#{prefix}stats/#{stat_id}/signatures.json&quot;</span>
390
+ <span class="ruby-identifier">find</span>(<span class="ruby-value">:all</span>, <span class="ruby-identifier">from</span><span class="ruby-operator">:</span> <span class="ruby-identifier">from</span>)
391
+ <span class="ruby-keyword">end</span></pre>
392
+ </div><!-- for_stat-source -->
393
+
394
+ </div>
395
+
396
+
397
+
398
+
399
+ </div><!-- for_stat-method -->
400
+
401
+
402
+ </section><!-- public-class-method-details -->
403
+
404
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
405
+ <h3 class="section-header">Public Instance Methods</h3>
406
+
407
+
408
+ <div id="method-i-destroy" class="method-detail ">
409
+
410
+ <div class="method-heading">
411
+ <span class="method-name">destroy</span><span
412
+ class="method-args">()</span>
413
+
414
+ <span class="method-click-advice">click to toggle source</span>
415
+
416
+ </div>
417
+
418
+
419
+ <div class="method-description">
420
+
421
+ <p>Not Implemented. You cannot delete a <a href="Stat.html">Stat</a>.</p>
422
+
423
+
424
+
425
+
426
+ <div class="method-source-code" id="destroy-source">
427
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 49</span>
428
+ </pre>
429
+ </div><!-- destroy-source -->
430
+
431
+ </div>
432
+
433
+
434
+
435
+
436
+ </div><!-- destroy-method -->
437
+
438
+
439
+ <div id="method-i-save" class="method-detail ">
440
+
441
+ <div class="method-heading">
442
+ <span class="method-name">save</span><span
443
+ class="method-args">()</span>
444
+
445
+ <span class="method-click-advice">click to toggle source</span>
446
+
447
+ </div>
448
+
449
+
450
+ <div class="method-description">
451
+
452
+ <p>Not Implemented. You cannot create or update a <a
453
+ href="Stat.html">Stat</a>.</p>
454
+
455
+
456
+
457
+
458
+ <div class="method-source-code" id="save-source">
459
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 46</span>
460
+ </pre>
461
+ </div><!-- save-source -->
462
+
463
+ </div>
464
+
465
+
466
+
467
+
468
+ </div><!-- save-method -->
469
+
470
+
471
+ </section><!-- public-instance-method-details -->
472
+
473
+ </section><!-- 5Buntitled-5D -->
474
+
475
+
476
+
477
+ <section id="27total-27+rollup+methods" class="documentation-section">
478
+
479
+ <div class="documentation-section-title">
480
+ <h2 class="section-header">
481
+ 'total' rollup methods
482
+ </h2>
483
+ <span class="section-click-top">
484
+ <a href="#top">&uarr; top</a>
485
+ </span>
486
+ </div>
487
+
488
+
489
+
490
+
491
+
492
+
493
+
494
+
495
+ <!-- Methods -->
496
+
497
+ <section id="public-instance-27total-27+rollup+methods-method-details" class="method-section section">
498
+ <h3 class="section-header">Public Instance Methods</h3>
499
+
500
+
501
+ <div id="method-i-total" class="method-detail ">
502
+
503
+ <div class="method-heading">
504
+ <span class="method-name">total</span><span
505
+ class="method-args">()</span>
506
+
507
+ <span class="method-click-advice">click to toggle source</span>
508
+
509
+ </div>
510
+
511
+
512
+ <div class="method-description">
513
+
514
+
515
+
516
+
517
+
518
+
519
+ <div class="method-source-code" id="total-source">
520
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 53</span>
521
+ </pre>
522
+ </div><!-- total-source -->
523
+
524
+ </div>
525
+
526
+
527
+
528
+
529
+ </div><!-- total-method -->
530
+
531
+
532
+ <div id="method-i-total_error" class="method-detail ">
533
+
534
+ <div class="method-heading">
535
+ <span class="method-name">total_error</span><span
536
+ class="method-args">()</span>
537
+
538
+ <span class="method-click-advice">click to toggle source</span>
539
+
540
+ </div>
541
+
542
+
543
+ <div class="method-description">
544
+
545
+
546
+
547
+
548
+
549
+
550
+ <div class="method-source-code" id="total_error-source">
551
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 61</span>
552
+ </pre>
553
+ </div><!-- total_error-source -->
554
+
555
+ </div>
556
+
557
+
558
+
559
+
560
+ </div><!-- total_error-method -->
561
+
562
+
563
+ <div id="method-i-total_fail" class="method-detail ">
564
+
565
+ <div class="method-heading">
566
+ <span class="method-name">total_fail</span><span
567
+ class="method-args">()</span>
568
+
569
+ <span class="method-click-advice">click to toggle source</span>
570
+
571
+ </div>
572
+
573
+
574
+ <div class="method-description">
575
+
576
+
577
+
578
+
579
+
580
+
581
+ <div class="method-source-code" id="total_fail-source">
582
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 57</span>
583
+ </pre>
584
+ </div><!-- total_fail-source -->
585
+
586
+ </div>
587
+
588
+
589
+
590
+
591
+ </div><!-- total_fail-method -->
592
+
593
+
594
+ <div id="method-i-total_info" class="method-detail ">
595
+
596
+ <div class="method-heading">
597
+ <span class="method-name">total_info</span><span
598
+ class="method-args">()</span>
599
+
600
+ <span class="method-click-advice">click to toggle source</span>
601
+
602
+ </div>
603
+
604
+
605
+ <div class="method-description">
606
+
607
+
608
+
609
+
610
+
611
+
612
+ <div class="method-source-code" id="total_info-source">
613
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 63</span>
614
+ </pre>
615
+ </div><!-- total_info-source -->
616
+
617
+ </div>
618
+
619
+
620
+
621
+
622
+ </div><!-- total_info-method -->
623
+
624
+
625
+ <div id="method-i-total_new_1d" class="method-detail ">
626
+
627
+ <div class="method-heading">
628
+ <span class="method-name">total_new_1d</span><span
629
+ class="method-args">()</span>
630
+
631
+ <span class="method-click-advice">click to toggle source</span>
632
+
633
+ </div>
634
+
635
+
636
+ <div class="method-description">
637
+
638
+
639
+
640
+
641
+
642
+
643
+ <div class="method-source-code" id="total_new_1d-source">
644
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 117</span>
645
+ </pre>
646
+ </div><!-- total_new_1d-source -->
647
+
648
+ </div>
649
+
650
+
651
+
652
+
653
+ </div><!-- total_new_1d-method -->
654
+
655
+
656
+ <div id="method-i-total_new_1d_error" class="method-detail ">
657
+
658
+ <div class="method-heading">
659
+ <span class="method-name">total_new_1d_error</span><span
660
+ class="method-args">()</span>
661
+
662
+ <span class="method-click-advice">click to toggle source</span>
663
+
664
+ </div>
665
+
666
+
667
+ <div class="method-description">
668
+
669
+
670
+
671
+
672
+
673
+
674
+ <div class="method-source-code" id="total_new_1d_error-source">
675
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 81</span>
676
+ </pre>
677
+ </div><!-- total_new_1d_error-source -->
678
+
679
+ </div>
680
+
681
+
682
+
683
+
684
+ </div><!-- total_new_1d_error-method -->
685
+
686
+
687
+ <div id="method-i-total_new_1d_fail" class="method-detail ">
688
+
689
+ <div class="method-heading">
690
+ <span class="method-name">total_new_1d_fail</span><span
691
+ class="method-args">()</span>
692
+
693
+ <span class="method-click-advice">click to toggle source</span>
694
+
695
+ </div>
696
+
697
+
698
+ <div class="method-description">
699
+
700
+
701
+
702
+
703
+
704
+
705
+ <div class="method-source-code" id="total_new_1d_fail-source">
706
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 77</span>
707
+ </pre>
708
+ </div><!-- total_new_1d_fail-source -->
709
+
710
+ </div>
711
+
712
+
713
+
714
+
715
+ </div><!-- total_new_1d_fail-method -->
716
+
717
+
718
+ <div id="method-i-total_new_1d_info" class="method-detail ">
719
+
720
+ <div class="method-heading">
721
+ <span class="method-name">total_new_1d_info</span><span
722
+ class="method-args">()</span>
723
+
724
+ <span class="method-click-advice">click to toggle source</span>
725
+
726
+ </div>
727
+
728
+
729
+ <div class="method-description">
730
+
731
+
732
+
733
+
734
+
735
+
736
+ <div class="method-source-code" id="total_new_1d_info-source">
737
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 83</span>
738
+ </pre>
739
+ </div><!-- total_new_1d_info-source -->
740
+
741
+ </div>
742
+
743
+
744
+
745
+
746
+ </div><!-- total_new_1d_info-method -->
747
+
748
+
749
+ <div id="method-i-total_new_1d_pass" class="method-detail ">
750
+
751
+ <div class="method-heading">
752
+ <span class="method-name">total_new_1d_pass</span><span
753
+ class="method-args">()</span>
754
+
755
+ <span class="method-click-advice">click to toggle source</span>
756
+
757
+ </div>
758
+
759
+
760
+ <div class="method-description">
761
+
762
+
763
+
764
+
765
+
766
+
767
+ <div class="method-source-code" id="total_new_1d_pass-source">
768
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 75</span>
769
+ </pre>
770
+ </div><!-- total_new_1d_pass-source -->
771
+
772
+ </div>
773
+
774
+
775
+
776
+
777
+ </div><!-- total_new_1d_pass-method -->
778
+
779
+
780
+ <div id="method-i-total_new_1d_warn" class="method-detail ">
781
+
782
+ <div class="method-heading">
783
+ <span class="method-name">total_new_1d_warn</span><span
784
+ class="method-args">()</span>
785
+
786
+ <span class="method-click-advice">click to toggle source</span>
787
+
788
+ </div>
789
+
790
+
791
+ <div class="method-description">
792
+
793
+
794
+
795
+
796
+
797
+
798
+ <div class="method-source-code" id="total_new_1d_warn-source">
799
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 79</span>
800
+ </pre>
801
+ </div><!-- total_new_1d_warn-source -->
802
+
803
+ </div>
804
+
805
+
806
+
807
+
808
+ </div><!-- total_new_1d_warn-method -->
809
+
810
+
811
+ <div id="method-i-total_new_1h" class="method-detail ">
812
+
813
+ <div class="method-heading">
814
+ <span class="method-name">total_new_1h</span><span
815
+ class="method-args">()</span>
816
+
817
+ <span class="method-click-advice">click to toggle source</span>
818
+
819
+ </div>
820
+
821
+
822
+ <div class="method-description">
823
+
824
+
825
+
826
+
827
+
828
+
829
+ <div class="method-source-code" id="total_new_1h-source">
830
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 115</span>
831
+ </pre>
832
+ </div><!-- total_new_1h-source -->
833
+
834
+ </div>
835
+
836
+
837
+
838
+
839
+ </div><!-- total_new_1h-method -->
840
+
841
+
842
+ <div id="method-i-total_new_1h_error" class="method-detail ">
843
+
844
+ <div class="method-heading">
845
+ <span class="method-name">total_new_1h_error</span><span
846
+ class="method-args">()</span>
847
+
848
+ <span class="method-click-advice">click to toggle source</span>
849
+
850
+ </div>
851
+
852
+
853
+ <div class="method-description">
854
+
855
+
856
+
857
+
858
+
859
+
860
+ <div class="method-source-code" id="total_new_1h_error-source">
861
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 71</span>
862
+ </pre>
863
+ </div><!-- total_new_1h_error-source -->
864
+
865
+ </div>
866
+
867
+
868
+
869
+
870
+ </div><!-- total_new_1h_error-method -->
871
+
872
+
873
+ <div id="method-i-total_new_1h_fail" class="method-detail ">
874
+
875
+ <div class="method-heading">
876
+ <span class="method-name">total_new_1h_fail</span><span
877
+ class="method-args">()</span>
878
+
879
+ <span class="method-click-advice">click to toggle source</span>
880
+
881
+ </div>
882
+
883
+
884
+ <div class="method-description">
885
+
886
+
887
+
888
+
889
+
890
+
891
+ <div class="method-source-code" id="total_new_1h_fail-source">
892
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 67</span>
893
+ </pre>
894
+ </div><!-- total_new_1h_fail-source -->
895
+
896
+ </div>
897
+
898
+
899
+
900
+
901
+ </div><!-- total_new_1h_fail-method -->
902
+
903
+
904
+ <div id="method-i-total_new_1h_info" class="method-detail ">
905
+
906
+ <div class="method-heading">
907
+ <span class="method-name">total_new_1h_info</span><span
908
+ class="method-args">()</span>
909
+
910
+ <span class="method-click-advice">click to toggle source</span>
911
+
912
+ </div>
913
+
914
+
915
+ <div class="method-description">
916
+
917
+
918
+
919
+
920
+
921
+
922
+ <div class="method-source-code" id="total_new_1h_info-source">
923
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 73</span>
924
+ </pre>
925
+ </div><!-- total_new_1h_info-source -->
926
+
927
+ </div>
928
+
929
+
930
+
931
+
932
+ </div><!-- total_new_1h_info-method -->
933
+
934
+
935
+ <div id="method-i-total_new_1h_pass" class="method-detail ">
936
+
937
+ <div class="method-heading">
938
+ <span class="method-name">total_new_1h_pass</span><span
939
+ class="method-args">()</span>
940
+
941
+ <span class="method-click-advice">click to toggle source</span>
942
+
943
+ </div>
944
+
945
+
946
+ <div class="method-description">
947
+
948
+
949
+
950
+
951
+
952
+
953
+ <div class="method-source-code" id="total_new_1h_pass-source">
954
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 65</span>
955
+ </pre>
956
+ </div><!-- total_new_1h_pass-source -->
957
+
958
+ </div>
959
+
960
+
961
+
962
+
963
+ </div><!-- total_new_1h_pass-method -->
964
+
965
+
966
+ <div id="method-i-total_new_1h_warn" class="method-detail ">
967
+
968
+ <div class="method-heading">
969
+ <span class="method-name">total_new_1h_warn</span><span
970
+ class="method-args">()</span>
971
+
972
+ <span class="method-click-advice">click to toggle source</span>
973
+
974
+ </div>
975
+
976
+
977
+ <div class="method-description">
978
+
979
+
980
+
981
+
982
+
983
+
984
+ <div class="method-source-code" id="total_new_1h_warn-source">
985
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 69</span>
986
+ </pre>
987
+ </div><!-- total_new_1h_warn-source -->
988
+
989
+ </div>
990
+
991
+
992
+
993
+
994
+ </div><!-- total_new_1h_warn-method -->
995
+
996
+
997
+ <div id="method-i-total_new_1w" class="method-detail ">
998
+
999
+ <div class="method-heading">
1000
+ <span class="method-name">total_new_1w</span><span
1001
+ class="method-args">()</span>
1002
+
1003
+ <span class="method-click-advice">click to toggle source</span>
1004
+
1005
+ </div>
1006
+
1007
+
1008
+ <div class="method-description">
1009
+
1010
+
1011
+
1012
+
1013
+
1014
+
1015
+ <div class="method-source-code" id="total_new_1w-source">
1016
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 119</span>
1017
+ </pre>
1018
+ </div><!-- total_new_1w-source -->
1019
+
1020
+ </div>
1021
+
1022
+
1023
+
1024
+
1025
+ </div><!-- total_new_1w-method -->
1026
+
1027
+
1028
+ <div id="method-i-total_new_1w_error" class="method-detail ">
1029
+
1030
+ <div class="method-heading">
1031
+ <span class="method-name">total_new_1w_error</span><span
1032
+ class="method-args">()</span>
1033
+
1034
+ <span class="method-click-advice">click to toggle source</span>
1035
+
1036
+ </div>
1037
+
1038
+
1039
+ <div class="method-description">
1040
+
1041
+
1042
+
1043
+
1044
+
1045
+
1046
+ <div class="method-source-code" id="total_new_1w_error-source">
1047
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 89</span>
1048
+ </pre>
1049
+ </div><!-- total_new_1w_error-source -->
1050
+
1051
+ </div>
1052
+
1053
+
1054
+
1055
+
1056
+ </div><!-- total_new_1w_error-method -->
1057
+
1058
+
1059
+ <div id="method-i-total_new_1w_fail" class="method-detail ">
1060
+
1061
+ <div class="method-heading">
1062
+ <span class="method-name">total_new_1w_fail</span><span
1063
+ class="method-args">()</span>
1064
+
1065
+ <span class="method-click-advice">click to toggle source</span>
1066
+
1067
+ </div>
1068
+
1069
+
1070
+ <div class="method-description">
1071
+
1072
+
1073
+
1074
+
1075
+
1076
+
1077
+ <div class="method-source-code" id="total_new_1w_fail-source">
1078
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 87</span>
1079
+ </pre>
1080
+ </div><!-- total_new_1w_fail-source -->
1081
+
1082
+ </div>
1083
+
1084
+
1085
+
1086
+
1087
+ </div><!-- total_new_1w_fail-method -->
1088
+
1089
+
1090
+ <div id="method-i-total_new_1w_info" class="method-detail ">
1091
+
1092
+ <div class="method-heading">
1093
+ <span class="method-name">total_new_1w_info</span><span
1094
+ class="method-args">()</span>
1095
+
1096
+ <span class="method-click-advice">click to toggle source</span>
1097
+
1098
+ </div>
1099
+
1100
+
1101
+ <div class="method-description">
1102
+
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+ <div class="method-source-code" id="total_new_1w_info-source">
1109
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 91</span>
1110
+ </pre>
1111
+ </div><!-- total_new_1w_info-source -->
1112
+
1113
+ </div>
1114
+
1115
+
1116
+
1117
+
1118
+ </div><!-- total_new_1w_info-method -->
1119
+
1120
+
1121
+ <div id="method-i-total_new_1w_pass" class="method-detail ">
1122
+
1123
+ <div class="method-heading">
1124
+ <span class="method-name">total_new_1w_pass</span><span
1125
+ class="method-args">()</span>
1126
+
1127
+ <span class="method-click-advice">click to toggle source</span>
1128
+
1129
+ </div>
1130
+
1131
+
1132
+ <div class="method-description">
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+ <div class="method-source-code" id="total_new_1w_pass-source">
1140
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 85</span>
1141
+ </pre>
1142
+ </div><!-- total_new_1w_pass-source -->
1143
+
1144
+ </div>
1145
+
1146
+
1147
+
1148
+
1149
+ </div><!-- total_new_1w_pass-method -->
1150
+
1151
+
1152
+ <div id="method-i-total_new_1w_warn" class="method-detail ">
1153
+
1154
+ <div class="method-heading">
1155
+ <span class="method-name">total_new_1w_warn</span><span
1156
+ class="method-args">()</span>
1157
+
1158
+ <span class="method-click-advice">click to toggle source</span>
1159
+
1160
+ </div>
1161
+
1162
+
1163
+ <div class="method-description">
1164
+
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+ <div class="method-source-code" id="total_new_1w_warn-source">
1171
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 93</span>
1172
+ </pre>
1173
+ </div><!-- total_new_1w_warn-source -->
1174
+
1175
+ </div>
1176
+
1177
+
1178
+
1179
+
1180
+ </div><!-- total_new_1w_warn-method -->
1181
+
1182
+
1183
+ <div id="method-i-total_old" class="method-detail ">
1184
+
1185
+ <div class="method-heading">
1186
+ <span class="method-name">total_old</span><span
1187
+ class="method-args">()</span>
1188
+
1189
+ <span class="method-click-advice">click to toggle source</span>
1190
+
1191
+ </div>
1192
+
1193
+
1194
+ <div class="method-description">
1195
+
1196
+
1197
+
1198
+
1199
+
1200
+
1201
+ <div class="method-source-code" id="total_old-source">
1202
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 120</span>
1203
+ </pre>
1204
+ </div><!-- total_old-source -->
1205
+
1206
+ </div>
1207
+
1208
+
1209
+
1210
+
1211
+ </div><!-- total_old-method -->
1212
+
1213
+
1214
+ <div id="method-i-total_old_error" class="method-detail ">
1215
+
1216
+ <div class="method-heading">
1217
+ <span class="method-name">total_old_error</span><span
1218
+ class="method-args">()</span>
1219
+
1220
+ <span class="method-click-advice">click to toggle source</span>
1221
+
1222
+ </div>
1223
+
1224
+
1225
+ <div class="method-description">
1226
+
1227
+
1228
+
1229
+
1230
+
1231
+
1232
+ <div class="method-source-code" id="total_old_error-source">
1233
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 101</span>
1234
+ </pre>
1235
+ </div><!-- total_old_error-source -->
1236
+
1237
+ </div>
1238
+
1239
+
1240
+
1241
+
1242
+ </div><!-- total_old_error-method -->
1243
+
1244
+
1245
+ <div id="method-i-total_old_fail" class="method-detail ">
1246
+
1247
+ <div class="method-heading">
1248
+ <span class="method-name">total_old_fail</span><span
1249
+ class="method-args">()</span>
1250
+
1251
+ <span class="method-click-advice">click to toggle source</span>
1252
+
1253
+ </div>
1254
+
1255
+
1256
+ <div class="method-description">
1257
+
1258
+
1259
+
1260
+
1261
+
1262
+
1263
+ <div class="method-source-code" id="total_old_fail-source">
1264
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 95</span>
1265
+ </pre>
1266
+ </div><!-- total_old_fail-source -->
1267
+
1268
+ </div>
1269
+
1270
+
1271
+
1272
+
1273
+ </div><!-- total_old_fail-method -->
1274
+
1275
+
1276
+ <div id="method-i-total_old_info" class="method-detail ">
1277
+
1278
+ <div class="method-heading">
1279
+ <span class="method-name">total_old_info</span><span
1280
+ class="method-args">()</span>
1281
+
1282
+ <span class="method-click-advice">click to toggle source</span>
1283
+
1284
+ </div>
1285
+
1286
+
1287
+ <div class="method-description">
1288
+
1289
+
1290
+
1291
+
1292
+
1293
+
1294
+ <div class="method-source-code" id="total_old_info-source">
1295
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 103</span>
1296
+ </pre>
1297
+ </div><!-- total_old_info-source -->
1298
+
1299
+ </div>
1300
+
1301
+
1302
+
1303
+
1304
+ </div><!-- total_old_info-method -->
1305
+
1306
+
1307
+ <div id="method-i-total_old_pass" class="method-detail ">
1308
+
1309
+ <div class="method-heading">
1310
+ <span class="method-name">total_old_pass</span><span
1311
+ class="method-args">()</span>
1312
+
1313
+ <span class="method-click-advice">click to toggle source</span>
1314
+
1315
+ </div>
1316
+
1317
+
1318
+ <div class="method-description">
1319
+
1320
+
1321
+
1322
+
1323
+
1324
+
1325
+ <div class="method-source-code" id="total_old_pass-source">
1326
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 97</span>
1327
+ </pre>
1328
+ </div><!-- total_old_pass-source -->
1329
+
1330
+ </div>
1331
+
1332
+
1333
+
1334
+
1335
+ </div><!-- total_old_pass-method -->
1336
+
1337
+
1338
+ <div id="method-i-total_old_warn" class="method-detail ">
1339
+
1340
+ <div class="method-heading">
1341
+ <span class="method-name">total_old_warn</span><span
1342
+ class="method-args">()</span>
1343
+
1344
+ <span class="method-click-advice">click to toggle source</span>
1345
+
1346
+ </div>
1347
+
1348
+
1349
+ <div class="method-description">
1350
+
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+ <div class="method-source-code" id="total_old_warn-source">
1357
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 99</span>
1358
+ </pre>
1359
+ </div><!-- total_old_warn-source -->
1360
+
1361
+ </div>
1362
+
1363
+
1364
+
1365
+
1366
+ </div><!-- total_old_warn-method -->
1367
+
1368
+
1369
+ <div id="method-i-total_pass" class="method-detail ">
1370
+
1371
+ <div class="method-heading">
1372
+ <span class="method-name">total_pass</span><span
1373
+ class="method-args">()</span>
1374
+
1375
+ <span class="method-click-advice">click to toggle source</span>
1376
+
1377
+ </div>
1378
+
1379
+
1380
+ <div class="method-description">
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+ <div class="method-source-code" id="total_pass-source">
1388
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 55</span>
1389
+ </pre>
1390
+ </div><!-- total_pass-source -->
1391
+
1392
+ </div>
1393
+
1394
+
1395
+
1396
+
1397
+ </div><!-- total_pass-method -->
1398
+
1399
+
1400
+ <div id="method-i-total_suppressed" class="method-detail ">
1401
+
1402
+ <div class="method-heading">
1403
+ <span class="method-name">total_suppressed</span><span
1404
+ class="method-args">()</span>
1405
+
1406
+ <span class="method-click-advice">click to toggle source</span>
1407
+
1408
+ </div>
1409
+
1410
+
1411
+ <div class="method-description">
1412
+
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+ <div class="method-source-code" id="total_suppressed-source">
1419
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 105</span>
1420
+ </pre>
1421
+ </div><!-- total_suppressed-source -->
1422
+
1423
+ </div>
1424
+
1425
+
1426
+
1427
+
1428
+ </div><!-- total_suppressed-method -->
1429
+
1430
+
1431
+ <div id="method-i-total_suppressed_error" class="method-detail ">
1432
+
1433
+ <div class="method-heading">
1434
+ <span class="method-name">total_suppressed_error</span><span
1435
+ class="method-args">()</span>
1436
+
1437
+ <span class="method-click-advice">click to toggle source</span>
1438
+
1439
+ </div>
1440
+
1441
+
1442
+ <div class="method-description">
1443
+
1444
+
1445
+
1446
+
1447
+
1448
+
1449
+ <div class="method-source-code" id="total_suppressed_error-source">
1450
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 113</span>
1451
+ </pre>
1452
+ </div><!-- total_suppressed_error-source -->
1453
+
1454
+ </div>
1455
+
1456
+
1457
+
1458
+
1459
+ </div><!-- total_suppressed_error-method -->
1460
+
1461
+
1462
+ <div id="method-i-total_suppressed_fail" class="method-detail ">
1463
+
1464
+ <div class="method-heading">
1465
+ <span class="method-name">total_suppressed_fail</span><span
1466
+ class="method-args">()</span>
1467
+
1468
+ <span class="method-click-advice">click to toggle source</span>
1469
+
1470
+ </div>
1471
+
1472
+
1473
+ <div class="method-description">
1474
+
1475
+
1476
+
1477
+
1478
+
1479
+
1480
+ <div class="method-source-code" id="total_suppressed_fail-source">
1481
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 109</span>
1482
+ </pre>
1483
+ </div><!-- total_suppressed_fail-source -->
1484
+
1485
+ </div>
1486
+
1487
+
1488
+
1489
+
1490
+ </div><!-- total_suppressed_fail-method -->
1491
+
1492
+
1493
+ <div id="method-i-total_suppressed_pass" class="method-detail ">
1494
+
1495
+ <div class="method-heading">
1496
+ <span class="method-name">total_suppressed_pass</span><span
1497
+ class="method-args">()</span>
1498
+
1499
+ <span class="method-click-advice">click to toggle source</span>
1500
+
1501
+ </div>
1502
+
1503
+
1504
+ <div class="method-description">
1505
+
1506
+
1507
+
1508
+
1509
+
1510
+
1511
+ <div class="method-source-code" id="total_suppressed_pass-source">
1512
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 107</span>
1513
+ </pre>
1514
+ </div><!-- total_suppressed_pass-source -->
1515
+
1516
+ </div>
1517
+
1518
+
1519
+
1520
+
1521
+ </div><!-- total_suppressed_pass-method -->
1522
+
1523
+
1524
+ <div id="method-i-total_suppressed_warn" class="method-detail ">
1525
+
1526
+ <div class="method-heading">
1527
+ <span class="method-name">total_suppressed_warn</span><span
1528
+ class="method-args">()</span>
1529
+
1530
+ <span class="method-click-advice">click to toggle source</span>
1531
+
1532
+ </div>
1533
+
1534
+
1535
+ <div class="method-description">
1536
+
1537
+
1538
+
1539
+
1540
+
1541
+
1542
+ <div class="method-source-code" id="total_suppressed_warn-source">
1543
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 111</span>
1544
+ </pre>
1545
+ </div><!-- total_suppressed_warn-source -->
1546
+
1547
+ </div>
1548
+
1549
+
1550
+
1551
+
1552
+ </div><!-- total_suppressed_warn-method -->
1553
+
1554
+
1555
+ <div id="method-i-total_warn" class="method-detail ">
1556
+
1557
+ <div class="method-heading">
1558
+ <span class="method-name">total_warn</span><span
1559
+ class="method-args">()</span>
1560
+
1561
+ <span class="method-click-advice">click to toggle source</span>
1562
+
1563
+ </div>
1564
+
1565
+
1566
+ <div class="method-description">
1567
+
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+ <div class="method-source-code" id="total_warn-source">
1574
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_signature.rb, line 59</span>
1575
+ </pre>
1576
+ </div><!-- total_warn-source -->
1577
+
1578
+ </div>
1579
+
1580
+
1581
+
1582
+
1583
+ </div><!-- total_warn-method -->
1584
+
1585
+
1586
+ </section><!-- public-instance-method-details -->
1587
+
1588
+ </section><!-- 27total-27+rollup+methods -->
1589
+
1590
+ </div><!-- documentation -->
1591
+
1592
+
1593
+ <footer id="validator-badges">
1594
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
1595
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.0.
1596
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
1597
+ </footer>
1598
+