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,1599 @@
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::StatCustomSignature - 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_custom_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::StatCustomSignature</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_custom_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 custom_signature stat to
326
+ retrieve</p>
327
+
328
+
329
+ <div class="method-calls-super">
330
+ Calls superclass method
331
+
332
+ </div>
333
+
334
+
335
+
336
+ <div class="method-source-code" id="find-source">
337
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 31</span>
338
+ <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>)
339
+ <span class="ruby-identifier">scope</span> = <span class="ruby-identifier">arguments</span>.<span class="ruby-identifier">slice!</span>(<span class="ruby-value">0</span>)
340
+ <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>
341
+ <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>
342
+ <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>
343
+ <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>)
344
+ <span class="ruby-identifier">for_stat</span>(<span class="ruby-identifier">stat_id</span>)
345
+ <span class="ruby-keyword">end</span></pre>
346
+ </div><!-- find-source -->
347
+
348
+ </div>
349
+
350
+
351
+
352
+
353
+ </div><!-- find-method -->
354
+
355
+
356
+ <div id="method-c-for_stat" class="method-detail ">
357
+
358
+ <div class="method-heading">
359
+ <span class="method-name">for_stat</span><span
360
+ class="method-args">(stat_id = nil)</span>
361
+
362
+ <span class="method-click-advice">click to toggle source</span>
363
+
364
+ </div>
365
+
366
+
367
+ <div class="method-description">
368
+
369
+ <p>Returns a paginated collection of custom_signature stats for the given
370
+ stat_id Convenience method to use instead of <a
371
+ href="StatCustomSignature.html#method-c-find">::find</a> since a stat_id is
372
+ required to return custom_signature stats.</p>
373
+
374
+ <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>
375
+
376
+ <p><code>stat_id</code> | Required | The ID of the stat to list
377
+ custom_signature stats for</p>
378
+
379
+ <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>
380
+
381
+ <pre>stats = ESP::StatCustomSignature.for_stat(1194)</pre>
382
+
383
+
384
+
385
+
386
+ <div class="method-source-code" id="for_stat-source">
387
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 17</span>
388
+ <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>)
389
+ <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>
390
+ <span class="ruby-identifier">from</span> = <span class="ruby-node">&quot;#{prefix}stats/#{stat_id}/custom_signatures.json&quot;</span>
391
+ <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>)
392
+ <span class="ruby-keyword">end</span></pre>
393
+ </div><!-- for_stat-source -->
394
+
395
+ </div>
396
+
397
+
398
+
399
+
400
+ </div><!-- for_stat-method -->
401
+
402
+
403
+ </section><!-- public-class-method-details -->
404
+
405
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
406
+ <h3 class="section-header">Public Instance Methods</h3>
407
+
408
+
409
+ <div id="method-i-destroy" class="method-detail ">
410
+
411
+ <div class="method-heading">
412
+ <span class="method-name">destroy</span><span
413
+ class="method-args">()</span>
414
+
415
+ <span class="method-click-advice">click to toggle source</span>
416
+
417
+ </div>
418
+
419
+
420
+ <div class="method-description">
421
+
422
+ <p>Not Implemented. You cannot delete a <a href="Stat.html">Stat</a>.</p>
423
+
424
+
425
+
426
+
427
+ <div class="method-source-code" id="destroy-source">
428
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 49</span>
429
+ </pre>
430
+ </div><!-- destroy-source -->
431
+
432
+ </div>
433
+
434
+
435
+
436
+
437
+ </div><!-- destroy-method -->
438
+
439
+
440
+ <div id="method-i-save" class="method-detail ">
441
+
442
+ <div class="method-heading">
443
+ <span class="method-name">save</span><span
444
+ class="method-args">()</span>
445
+
446
+ <span class="method-click-advice">click to toggle source</span>
447
+
448
+ </div>
449
+
450
+
451
+ <div class="method-description">
452
+
453
+ <p>Not Implemented. You cannot create or update a <a
454
+ href="Stat.html">Stat</a>.</p>
455
+
456
+
457
+
458
+
459
+ <div class="method-source-code" id="save-source">
460
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 46</span>
461
+ </pre>
462
+ </div><!-- save-source -->
463
+
464
+ </div>
465
+
466
+
467
+
468
+
469
+ </div><!-- save-method -->
470
+
471
+
472
+ </section><!-- public-instance-method-details -->
473
+
474
+ </section><!-- 5Buntitled-5D -->
475
+
476
+
477
+
478
+ <section id="27total-27+rollup+methods" class="documentation-section">
479
+
480
+ <div class="documentation-section-title">
481
+ <h2 class="section-header">
482
+ 'total' rollup methods
483
+ </h2>
484
+ <span class="section-click-top">
485
+ <a href="#top">&uarr; top</a>
486
+ </span>
487
+ </div>
488
+
489
+
490
+
491
+
492
+
493
+
494
+
495
+
496
+ <!-- Methods -->
497
+
498
+ <section id="public-instance-27total-27+rollup+methods-method-details" class="method-section section">
499
+ <h3 class="section-header">Public Instance Methods</h3>
500
+
501
+
502
+ <div id="method-i-total" class="method-detail ">
503
+
504
+ <div class="method-heading">
505
+ <span class="method-name">total</span><span
506
+ class="method-args">()</span>
507
+
508
+ <span class="method-click-advice">click to toggle source</span>
509
+
510
+ </div>
511
+
512
+
513
+ <div class="method-description">
514
+
515
+
516
+
517
+
518
+
519
+
520
+ <div class="method-source-code" id="total-source">
521
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 53</span>
522
+ </pre>
523
+ </div><!-- total-source -->
524
+
525
+ </div>
526
+
527
+
528
+
529
+
530
+ </div><!-- total-method -->
531
+
532
+
533
+ <div id="method-i-total_error" class="method-detail ">
534
+
535
+ <div class="method-heading">
536
+ <span class="method-name">total_error</span><span
537
+ class="method-args">()</span>
538
+
539
+ <span class="method-click-advice">click to toggle source</span>
540
+
541
+ </div>
542
+
543
+
544
+ <div class="method-description">
545
+
546
+
547
+
548
+
549
+
550
+
551
+ <div class="method-source-code" id="total_error-source">
552
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 61</span>
553
+ </pre>
554
+ </div><!-- total_error-source -->
555
+
556
+ </div>
557
+
558
+
559
+
560
+
561
+ </div><!-- total_error-method -->
562
+
563
+
564
+ <div id="method-i-total_fail" class="method-detail ">
565
+
566
+ <div class="method-heading">
567
+ <span class="method-name">total_fail</span><span
568
+ class="method-args">()</span>
569
+
570
+ <span class="method-click-advice">click to toggle source</span>
571
+
572
+ </div>
573
+
574
+
575
+ <div class="method-description">
576
+
577
+
578
+
579
+
580
+
581
+
582
+ <div class="method-source-code" id="total_fail-source">
583
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 57</span>
584
+ </pre>
585
+ </div><!-- total_fail-source -->
586
+
587
+ </div>
588
+
589
+
590
+
591
+
592
+ </div><!-- total_fail-method -->
593
+
594
+
595
+ <div id="method-i-total_info" class="method-detail ">
596
+
597
+ <div class="method-heading">
598
+ <span class="method-name">total_info</span><span
599
+ class="method-args">()</span>
600
+
601
+ <span class="method-click-advice">click to toggle source</span>
602
+
603
+ </div>
604
+
605
+
606
+ <div class="method-description">
607
+
608
+
609
+
610
+
611
+
612
+
613
+ <div class="method-source-code" id="total_info-source">
614
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 63</span>
615
+ </pre>
616
+ </div><!-- total_info-source -->
617
+
618
+ </div>
619
+
620
+
621
+
622
+
623
+ </div><!-- total_info-method -->
624
+
625
+
626
+ <div id="method-i-total_new_1d" class="method-detail ">
627
+
628
+ <div class="method-heading">
629
+ <span class="method-name">total_new_1d</span><span
630
+ class="method-args">()</span>
631
+
632
+ <span class="method-click-advice">click to toggle source</span>
633
+
634
+ </div>
635
+
636
+
637
+ <div class="method-description">
638
+
639
+
640
+
641
+
642
+
643
+
644
+ <div class="method-source-code" id="total_new_1d-source">
645
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 117</span>
646
+ </pre>
647
+ </div><!-- total_new_1d-source -->
648
+
649
+ </div>
650
+
651
+
652
+
653
+
654
+ </div><!-- total_new_1d-method -->
655
+
656
+
657
+ <div id="method-i-total_new_1d_error" class="method-detail ">
658
+
659
+ <div class="method-heading">
660
+ <span class="method-name">total_new_1d_error</span><span
661
+ class="method-args">()</span>
662
+
663
+ <span class="method-click-advice">click to toggle source</span>
664
+
665
+ </div>
666
+
667
+
668
+ <div class="method-description">
669
+
670
+
671
+
672
+
673
+
674
+
675
+ <div class="method-source-code" id="total_new_1d_error-source">
676
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 81</span>
677
+ </pre>
678
+ </div><!-- total_new_1d_error-source -->
679
+
680
+ </div>
681
+
682
+
683
+
684
+
685
+ </div><!-- total_new_1d_error-method -->
686
+
687
+
688
+ <div id="method-i-total_new_1d_fail" class="method-detail ">
689
+
690
+ <div class="method-heading">
691
+ <span class="method-name">total_new_1d_fail</span><span
692
+ class="method-args">()</span>
693
+
694
+ <span class="method-click-advice">click to toggle source</span>
695
+
696
+ </div>
697
+
698
+
699
+ <div class="method-description">
700
+
701
+
702
+
703
+
704
+
705
+
706
+ <div class="method-source-code" id="total_new_1d_fail-source">
707
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 77</span>
708
+ </pre>
709
+ </div><!-- total_new_1d_fail-source -->
710
+
711
+ </div>
712
+
713
+
714
+
715
+
716
+ </div><!-- total_new_1d_fail-method -->
717
+
718
+
719
+ <div id="method-i-total_new_1d_info" class="method-detail ">
720
+
721
+ <div class="method-heading">
722
+ <span class="method-name">total_new_1d_info</span><span
723
+ class="method-args">()</span>
724
+
725
+ <span class="method-click-advice">click to toggle source</span>
726
+
727
+ </div>
728
+
729
+
730
+ <div class="method-description">
731
+
732
+
733
+
734
+
735
+
736
+
737
+ <div class="method-source-code" id="total_new_1d_info-source">
738
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 83</span>
739
+ </pre>
740
+ </div><!-- total_new_1d_info-source -->
741
+
742
+ </div>
743
+
744
+
745
+
746
+
747
+ </div><!-- total_new_1d_info-method -->
748
+
749
+
750
+ <div id="method-i-total_new_1d_pass" class="method-detail ">
751
+
752
+ <div class="method-heading">
753
+ <span class="method-name">total_new_1d_pass</span><span
754
+ class="method-args">()</span>
755
+
756
+ <span class="method-click-advice">click to toggle source</span>
757
+
758
+ </div>
759
+
760
+
761
+ <div class="method-description">
762
+
763
+
764
+
765
+
766
+
767
+
768
+ <div class="method-source-code" id="total_new_1d_pass-source">
769
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 75</span>
770
+ </pre>
771
+ </div><!-- total_new_1d_pass-source -->
772
+
773
+ </div>
774
+
775
+
776
+
777
+
778
+ </div><!-- total_new_1d_pass-method -->
779
+
780
+
781
+ <div id="method-i-total_new_1d_warn" class="method-detail ">
782
+
783
+ <div class="method-heading">
784
+ <span class="method-name">total_new_1d_warn</span><span
785
+ class="method-args">()</span>
786
+
787
+ <span class="method-click-advice">click to toggle source</span>
788
+
789
+ </div>
790
+
791
+
792
+ <div class="method-description">
793
+
794
+
795
+
796
+
797
+
798
+
799
+ <div class="method-source-code" id="total_new_1d_warn-source">
800
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 79</span>
801
+ </pre>
802
+ </div><!-- total_new_1d_warn-source -->
803
+
804
+ </div>
805
+
806
+
807
+
808
+
809
+ </div><!-- total_new_1d_warn-method -->
810
+
811
+
812
+ <div id="method-i-total_new_1h" class="method-detail ">
813
+
814
+ <div class="method-heading">
815
+ <span class="method-name">total_new_1h</span><span
816
+ class="method-args">()</span>
817
+
818
+ <span class="method-click-advice">click to toggle source</span>
819
+
820
+ </div>
821
+
822
+
823
+ <div class="method-description">
824
+
825
+
826
+
827
+
828
+
829
+
830
+ <div class="method-source-code" id="total_new_1h-source">
831
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 115</span>
832
+ </pre>
833
+ </div><!-- total_new_1h-source -->
834
+
835
+ </div>
836
+
837
+
838
+
839
+
840
+ </div><!-- total_new_1h-method -->
841
+
842
+
843
+ <div id="method-i-total_new_1h_error" class="method-detail ">
844
+
845
+ <div class="method-heading">
846
+ <span class="method-name">total_new_1h_error</span><span
847
+ class="method-args">()</span>
848
+
849
+ <span class="method-click-advice">click to toggle source</span>
850
+
851
+ </div>
852
+
853
+
854
+ <div class="method-description">
855
+
856
+
857
+
858
+
859
+
860
+
861
+ <div class="method-source-code" id="total_new_1h_error-source">
862
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 71</span>
863
+ </pre>
864
+ </div><!-- total_new_1h_error-source -->
865
+
866
+ </div>
867
+
868
+
869
+
870
+
871
+ </div><!-- total_new_1h_error-method -->
872
+
873
+
874
+ <div id="method-i-total_new_1h_fail" class="method-detail ">
875
+
876
+ <div class="method-heading">
877
+ <span class="method-name">total_new_1h_fail</span><span
878
+ class="method-args">()</span>
879
+
880
+ <span class="method-click-advice">click to toggle source</span>
881
+
882
+ </div>
883
+
884
+
885
+ <div class="method-description">
886
+
887
+
888
+
889
+
890
+
891
+
892
+ <div class="method-source-code" id="total_new_1h_fail-source">
893
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 67</span>
894
+ </pre>
895
+ </div><!-- total_new_1h_fail-source -->
896
+
897
+ </div>
898
+
899
+
900
+
901
+
902
+ </div><!-- total_new_1h_fail-method -->
903
+
904
+
905
+ <div id="method-i-total_new_1h_info" class="method-detail ">
906
+
907
+ <div class="method-heading">
908
+ <span class="method-name">total_new_1h_info</span><span
909
+ class="method-args">()</span>
910
+
911
+ <span class="method-click-advice">click to toggle source</span>
912
+
913
+ </div>
914
+
915
+
916
+ <div class="method-description">
917
+
918
+
919
+
920
+
921
+
922
+
923
+ <div class="method-source-code" id="total_new_1h_info-source">
924
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 73</span>
925
+ </pre>
926
+ </div><!-- total_new_1h_info-source -->
927
+
928
+ </div>
929
+
930
+
931
+
932
+
933
+ </div><!-- total_new_1h_info-method -->
934
+
935
+
936
+ <div id="method-i-total_new_1h_pass" class="method-detail ">
937
+
938
+ <div class="method-heading">
939
+ <span class="method-name">total_new_1h_pass</span><span
940
+ class="method-args">()</span>
941
+
942
+ <span class="method-click-advice">click to toggle source</span>
943
+
944
+ </div>
945
+
946
+
947
+ <div class="method-description">
948
+
949
+
950
+
951
+
952
+
953
+
954
+ <div class="method-source-code" id="total_new_1h_pass-source">
955
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 65</span>
956
+ </pre>
957
+ </div><!-- total_new_1h_pass-source -->
958
+
959
+ </div>
960
+
961
+
962
+
963
+
964
+ </div><!-- total_new_1h_pass-method -->
965
+
966
+
967
+ <div id="method-i-total_new_1h_warn" class="method-detail ">
968
+
969
+ <div class="method-heading">
970
+ <span class="method-name">total_new_1h_warn</span><span
971
+ class="method-args">()</span>
972
+
973
+ <span class="method-click-advice">click to toggle source</span>
974
+
975
+ </div>
976
+
977
+
978
+ <div class="method-description">
979
+
980
+
981
+
982
+
983
+
984
+
985
+ <div class="method-source-code" id="total_new_1h_warn-source">
986
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 69</span>
987
+ </pre>
988
+ </div><!-- total_new_1h_warn-source -->
989
+
990
+ </div>
991
+
992
+
993
+
994
+
995
+ </div><!-- total_new_1h_warn-method -->
996
+
997
+
998
+ <div id="method-i-total_new_1w" class="method-detail ">
999
+
1000
+ <div class="method-heading">
1001
+ <span class="method-name">total_new_1w</span><span
1002
+ class="method-args">()</span>
1003
+
1004
+ <span class="method-click-advice">click to toggle source</span>
1005
+
1006
+ </div>
1007
+
1008
+
1009
+ <div class="method-description">
1010
+
1011
+
1012
+
1013
+
1014
+
1015
+
1016
+ <div class="method-source-code" id="total_new_1w-source">
1017
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 119</span>
1018
+ </pre>
1019
+ </div><!-- total_new_1w-source -->
1020
+
1021
+ </div>
1022
+
1023
+
1024
+
1025
+
1026
+ </div><!-- total_new_1w-method -->
1027
+
1028
+
1029
+ <div id="method-i-total_new_1w_error" class="method-detail ">
1030
+
1031
+ <div class="method-heading">
1032
+ <span class="method-name">total_new_1w_error</span><span
1033
+ class="method-args">()</span>
1034
+
1035
+ <span class="method-click-advice">click to toggle source</span>
1036
+
1037
+ </div>
1038
+
1039
+
1040
+ <div class="method-description">
1041
+
1042
+
1043
+
1044
+
1045
+
1046
+
1047
+ <div class="method-source-code" id="total_new_1w_error-source">
1048
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 89</span>
1049
+ </pre>
1050
+ </div><!-- total_new_1w_error-source -->
1051
+
1052
+ </div>
1053
+
1054
+
1055
+
1056
+
1057
+ </div><!-- total_new_1w_error-method -->
1058
+
1059
+
1060
+ <div id="method-i-total_new_1w_fail" class="method-detail ">
1061
+
1062
+ <div class="method-heading">
1063
+ <span class="method-name">total_new_1w_fail</span><span
1064
+ class="method-args">()</span>
1065
+
1066
+ <span class="method-click-advice">click to toggle source</span>
1067
+
1068
+ </div>
1069
+
1070
+
1071
+ <div class="method-description">
1072
+
1073
+
1074
+
1075
+
1076
+
1077
+
1078
+ <div class="method-source-code" id="total_new_1w_fail-source">
1079
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 87</span>
1080
+ </pre>
1081
+ </div><!-- total_new_1w_fail-source -->
1082
+
1083
+ </div>
1084
+
1085
+
1086
+
1087
+
1088
+ </div><!-- total_new_1w_fail-method -->
1089
+
1090
+
1091
+ <div id="method-i-total_new_1w_info" class="method-detail ">
1092
+
1093
+ <div class="method-heading">
1094
+ <span class="method-name">total_new_1w_info</span><span
1095
+ class="method-args">()</span>
1096
+
1097
+ <span class="method-click-advice">click to toggle source</span>
1098
+
1099
+ </div>
1100
+
1101
+
1102
+ <div class="method-description">
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+ <div class="method-source-code" id="total_new_1w_info-source">
1110
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 91</span>
1111
+ </pre>
1112
+ </div><!-- total_new_1w_info-source -->
1113
+
1114
+ </div>
1115
+
1116
+
1117
+
1118
+
1119
+ </div><!-- total_new_1w_info-method -->
1120
+
1121
+
1122
+ <div id="method-i-total_new_1w_pass" class="method-detail ">
1123
+
1124
+ <div class="method-heading">
1125
+ <span class="method-name">total_new_1w_pass</span><span
1126
+ class="method-args">()</span>
1127
+
1128
+ <span class="method-click-advice">click to toggle source</span>
1129
+
1130
+ </div>
1131
+
1132
+
1133
+ <div class="method-description">
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1140
+ <div class="method-source-code" id="total_new_1w_pass-source">
1141
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 85</span>
1142
+ </pre>
1143
+ </div><!-- total_new_1w_pass-source -->
1144
+
1145
+ </div>
1146
+
1147
+
1148
+
1149
+
1150
+ </div><!-- total_new_1w_pass-method -->
1151
+
1152
+
1153
+ <div id="method-i-total_new_1w_warn" class="method-detail ">
1154
+
1155
+ <div class="method-heading">
1156
+ <span class="method-name">total_new_1w_warn</span><span
1157
+ class="method-args">()</span>
1158
+
1159
+ <span class="method-click-advice">click to toggle source</span>
1160
+
1161
+ </div>
1162
+
1163
+
1164
+ <div class="method-description">
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+
1171
+ <div class="method-source-code" id="total_new_1w_warn-source">
1172
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 93</span>
1173
+ </pre>
1174
+ </div><!-- total_new_1w_warn-source -->
1175
+
1176
+ </div>
1177
+
1178
+
1179
+
1180
+
1181
+ </div><!-- total_new_1w_warn-method -->
1182
+
1183
+
1184
+ <div id="method-i-total_old" class="method-detail ">
1185
+
1186
+ <div class="method-heading">
1187
+ <span class="method-name">total_old</span><span
1188
+ class="method-args">()</span>
1189
+
1190
+ <span class="method-click-advice">click to toggle source</span>
1191
+
1192
+ </div>
1193
+
1194
+
1195
+ <div class="method-description">
1196
+
1197
+
1198
+
1199
+
1200
+
1201
+
1202
+ <div class="method-source-code" id="total_old-source">
1203
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 120</span>
1204
+ </pre>
1205
+ </div><!-- total_old-source -->
1206
+
1207
+ </div>
1208
+
1209
+
1210
+
1211
+
1212
+ </div><!-- total_old-method -->
1213
+
1214
+
1215
+ <div id="method-i-total_old_error" class="method-detail ">
1216
+
1217
+ <div class="method-heading">
1218
+ <span class="method-name">total_old_error</span><span
1219
+ class="method-args">()</span>
1220
+
1221
+ <span class="method-click-advice">click to toggle source</span>
1222
+
1223
+ </div>
1224
+
1225
+
1226
+ <div class="method-description">
1227
+
1228
+
1229
+
1230
+
1231
+
1232
+
1233
+ <div class="method-source-code" id="total_old_error-source">
1234
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 101</span>
1235
+ </pre>
1236
+ </div><!-- total_old_error-source -->
1237
+
1238
+ </div>
1239
+
1240
+
1241
+
1242
+
1243
+ </div><!-- total_old_error-method -->
1244
+
1245
+
1246
+ <div id="method-i-total_old_fail" class="method-detail ">
1247
+
1248
+ <div class="method-heading">
1249
+ <span class="method-name">total_old_fail</span><span
1250
+ class="method-args">()</span>
1251
+
1252
+ <span class="method-click-advice">click to toggle source</span>
1253
+
1254
+ </div>
1255
+
1256
+
1257
+ <div class="method-description">
1258
+
1259
+
1260
+
1261
+
1262
+
1263
+
1264
+ <div class="method-source-code" id="total_old_fail-source">
1265
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 95</span>
1266
+ </pre>
1267
+ </div><!-- total_old_fail-source -->
1268
+
1269
+ </div>
1270
+
1271
+
1272
+
1273
+
1274
+ </div><!-- total_old_fail-method -->
1275
+
1276
+
1277
+ <div id="method-i-total_old_info" class="method-detail ">
1278
+
1279
+ <div class="method-heading">
1280
+ <span class="method-name">total_old_info</span><span
1281
+ class="method-args">()</span>
1282
+
1283
+ <span class="method-click-advice">click to toggle source</span>
1284
+
1285
+ </div>
1286
+
1287
+
1288
+ <div class="method-description">
1289
+
1290
+
1291
+
1292
+
1293
+
1294
+
1295
+ <div class="method-source-code" id="total_old_info-source">
1296
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 103</span>
1297
+ </pre>
1298
+ </div><!-- total_old_info-source -->
1299
+
1300
+ </div>
1301
+
1302
+
1303
+
1304
+
1305
+ </div><!-- total_old_info-method -->
1306
+
1307
+
1308
+ <div id="method-i-total_old_pass" class="method-detail ">
1309
+
1310
+ <div class="method-heading">
1311
+ <span class="method-name">total_old_pass</span><span
1312
+ class="method-args">()</span>
1313
+
1314
+ <span class="method-click-advice">click to toggle source</span>
1315
+
1316
+ </div>
1317
+
1318
+
1319
+ <div class="method-description">
1320
+
1321
+
1322
+
1323
+
1324
+
1325
+
1326
+ <div class="method-source-code" id="total_old_pass-source">
1327
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 97</span>
1328
+ </pre>
1329
+ </div><!-- total_old_pass-source -->
1330
+
1331
+ </div>
1332
+
1333
+
1334
+
1335
+
1336
+ </div><!-- total_old_pass-method -->
1337
+
1338
+
1339
+ <div id="method-i-total_old_warn" class="method-detail ">
1340
+
1341
+ <div class="method-heading">
1342
+ <span class="method-name">total_old_warn</span><span
1343
+ class="method-args">()</span>
1344
+
1345
+ <span class="method-click-advice">click to toggle source</span>
1346
+
1347
+ </div>
1348
+
1349
+
1350
+ <div class="method-description">
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+ <div class="method-source-code" id="total_old_warn-source">
1358
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 99</span>
1359
+ </pre>
1360
+ </div><!-- total_old_warn-source -->
1361
+
1362
+ </div>
1363
+
1364
+
1365
+
1366
+
1367
+ </div><!-- total_old_warn-method -->
1368
+
1369
+
1370
+ <div id="method-i-total_pass" class="method-detail ">
1371
+
1372
+ <div class="method-heading">
1373
+ <span class="method-name">total_pass</span><span
1374
+ class="method-args">()</span>
1375
+
1376
+ <span class="method-click-advice">click to toggle source</span>
1377
+
1378
+ </div>
1379
+
1380
+
1381
+ <div class="method-description">
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+ <div class="method-source-code" id="total_pass-source">
1389
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 55</span>
1390
+ </pre>
1391
+ </div><!-- total_pass-source -->
1392
+
1393
+ </div>
1394
+
1395
+
1396
+
1397
+
1398
+ </div><!-- total_pass-method -->
1399
+
1400
+
1401
+ <div id="method-i-total_suppressed" class="method-detail ">
1402
+
1403
+ <div class="method-heading">
1404
+ <span class="method-name">total_suppressed</span><span
1405
+ class="method-args">()</span>
1406
+
1407
+ <span class="method-click-advice">click to toggle source</span>
1408
+
1409
+ </div>
1410
+
1411
+
1412
+ <div class="method-description">
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+ <div class="method-source-code" id="total_suppressed-source">
1420
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 105</span>
1421
+ </pre>
1422
+ </div><!-- total_suppressed-source -->
1423
+
1424
+ </div>
1425
+
1426
+
1427
+
1428
+
1429
+ </div><!-- total_suppressed-method -->
1430
+
1431
+
1432
+ <div id="method-i-total_suppressed_error" class="method-detail ">
1433
+
1434
+ <div class="method-heading">
1435
+ <span class="method-name">total_suppressed_error</span><span
1436
+ class="method-args">()</span>
1437
+
1438
+ <span class="method-click-advice">click to toggle source</span>
1439
+
1440
+ </div>
1441
+
1442
+
1443
+ <div class="method-description">
1444
+
1445
+
1446
+
1447
+
1448
+
1449
+
1450
+ <div class="method-source-code" id="total_suppressed_error-source">
1451
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 113</span>
1452
+ </pre>
1453
+ </div><!-- total_suppressed_error-source -->
1454
+
1455
+ </div>
1456
+
1457
+
1458
+
1459
+
1460
+ </div><!-- total_suppressed_error-method -->
1461
+
1462
+
1463
+ <div id="method-i-total_suppressed_fail" class="method-detail ">
1464
+
1465
+ <div class="method-heading">
1466
+ <span class="method-name">total_suppressed_fail</span><span
1467
+ class="method-args">()</span>
1468
+
1469
+ <span class="method-click-advice">click to toggle source</span>
1470
+
1471
+ </div>
1472
+
1473
+
1474
+ <div class="method-description">
1475
+
1476
+
1477
+
1478
+
1479
+
1480
+
1481
+ <div class="method-source-code" id="total_suppressed_fail-source">
1482
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 109</span>
1483
+ </pre>
1484
+ </div><!-- total_suppressed_fail-source -->
1485
+
1486
+ </div>
1487
+
1488
+
1489
+
1490
+
1491
+ </div><!-- total_suppressed_fail-method -->
1492
+
1493
+
1494
+ <div id="method-i-total_suppressed_pass" class="method-detail ">
1495
+
1496
+ <div class="method-heading">
1497
+ <span class="method-name">total_suppressed_pass</span><span
1498
+ class="method-args">()</span>
1499
+
1500
+ <span class="method-click-advice">click to toggle source</span>
1501
+
1502
+ </div>
1503
+
1504
+
1505
+ <div class="method-description">
1506
+
1507
+
1508
+
1509
+
1510
+
1511
+
1512
+ <div class="method-source-code" id="total_suppressed_pass-source">
1513
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 107</span>
1514
+ </pre>
1515
+ </div><!-- total_suppressed_pass-source -->
1516
+
1517
+ </div>
1518
+
1519
+
1520
+
1521
+
1522
+ </div><!-- total_suppressed_pass-method -->
1523
+
1524
+
1525
+ <div id="method-i-total_suppressed_warn" class="method-detail ">
1526
+
1527
+ <div class="method-heading">
1528
+ <span class="method-name">total_suppressed_warn</span><span
1529
+ class="method-args">()</span>
1530
+
1531
+ <span class="method-click-advice">click to toggle source</span>
1532
+
1533
+ </div>
1534
+
1535
+
1536
+ <div class="method-description">
1537
+
1538
+
1539
+
1540
+
1541
+
1542
+
1543
+ <div class="method-source-code" id="total_suppressed_warn-source">
1544
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 111</span>
1545
+ </pre>
1546
+ </div><!-- total_suppressed_warn-source -->
1547
+
1548
+ </div>
1549
+
1550
+
1551
+
1552
+
1553
+ </div><!-- total_suppressed_warn-method -->
1554
+
1555
+
1556
+ <div id="method-i-total_warn" class="method-detail ">
1557
+
1558
+ <div class="method-heading">
1559
+ <span class="method-name">total_warn</span><span
1560
+ class="method-args">()</span>
1561
+
1562
+ <span class="method-click-advice">click to toggle source</span>
1563
+
1564
+ </div>
1565
+
1566
+
1567
+ <div class="method-description">
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+
1574
+ <div class="method-source-code" id="total_warn-source">
1575
+ <pre><span class="ruby-comment"># File lib/esp/resources/stat_custom_signature.rb, line 59</span>
1576
+ </pre>
1577
+ </div><!-- total_warn-source -->
1578
+
1579
+ </div>
1580
+
1581
+
1582
+
1583
+
1584
+ </div><!-- total_warn-method -->
1585
+
1586
+
1587
+ </section><!-- public-instance-method-details -->
1588
+
1589
+ </section><!-- 27total-27+rollup+methods -->
1590
+
1591
+ </div><!-- documentation -->
1592
+
1593
+
1594
+ <footer id="validator-badges">
1595
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
1596
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.0.
1597
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
1598
+ </footer>
1599
+