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