mdarray 0.5.5.2-java → 0.5.6-java
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/config.rb +29 -95
- data/doc/BinaryOperator.html +20 -21
- data/doc/BitwiseOperators.html +18 -8
- data/doc/BitwiseOperators/BinaryAnd.html +189 -0
- data/doc/BitwiseOperators/BinaryLeftShift.html +189 -0
- data/doc/BitwiseOperators/BinaryOnesComplement.html +189 -0
- data/doc/BitwiseOperators/BinaryOr.html +189 -0
- data/doc/BitwiseOperators/BinaryRightShift.html +189 -0
- data/doc/BitwiseOperators/BinaryXor.html +189 -0
- data/doc/BooleanFunctions.html +18 -8
- data/doc/BooleanFunctions/And.html +189 -0
- data/doc/BooleanFunctions/Not.html +189 -0
- data/doc/BooleanFunctions/Or.html +189 -0
- data/doc/BooleanMDArray.html +10 -10
- data/doc/ByteMDArray.html +73 -14
- data/doc/CernDoubleFunctions.html +208 -0
- data/doc/CernFloatFunctions.html +208 -0
- data/doc/CernFunctions.html +828 -0
- data/doc/CernIntFunctions.html +208 -0
- data/doc/CernLongFunctions.html +208 -0
- data/doc/CharMDArray.html +181 -0
- data/doc/Colt.html +18 -20
- data/doc/ComparisonOperators.html +18 -8
- data/doc/ComparisonOperators/Eq.html +189 -0
- data/doc/ComparisonOperators/Ge.html +189 -0
- data/doc/ComparisonOperators/Gt.html +189 -0
- data/doc/ComparisonOperators/Le.html +189 -0
- data/doc/ComparisonOperators/Lt.html +189 -0
- data/doc/Const.html +107 -47
- data/doc/Csv.html +325 -113
- data/doc/Csv/Dimension.html +771 -0
- data/doc/Csv/Dimensions.html +654 -0
- data/doc/DDescriptive.html +573 -625
- data/doc/DoubleMDArray.html +40 -172
- data/doc/DoubleStatList.html +19 -20
- data/doc/FastBinaryOperator.html +166 -148
- data/doc/FastUnaryOperator.html +104 -109
- data/doc/FloatMDArray.html +55 -16
- data/doc/FunctionCreation.html +53 -273
- data/doc/FunctionMap.html +381 -93
- data/doc/GenericFunctions.html +18 -8
- data/doc/GenericFunctions/Null.html +187 -0
- data/doc/IntMDArray.html +77 -16
- data/doc/Java/CernJetMathTdouble/DoubleFunctions.html +120 -0
- data/doc/Java/CernJetMathTfloat/FloatFunctions.html +120 -0
- data/doc/Java/CernJetMathTint/IntFunctions.html +120 -0
- data/doc/Java/CernJetMathTlong/LongFunctions.html +120 -0
- data/doc/LazyBinaryOperator.html +714 -0
- data/doc/LazyMDArray.html +990 -0
- data/doc/LazyMDArray/BinaryComp.html +282 -0
- data/doc/LazyMDArray/UnaryComp.html +280 -0
- data/doc/LazyUnaryOperator.html +537 -0
- data/doc/LongMDArray.html +59 -15
- data/doc/MDArray.html +3223 -2181
- data/doc/MDArray/Counter.html +321 -1233
- data/doc/MDArray/IteratorFast.html +177 -116
- data/doc/MDArray/IteratorFastBoolean.html +37 -41
- data/doc/MDArray/IteratorFastByte.html +46 -39
- data/doc/MDArray/IteratorFastChar.html +37 -41
- data/doc/MDArray/IteratorFastDouble.html +37 -41
- data/doc/MDArray/IteratorFastFloat.html +37 -41
- data/doc/MDArray/IteratorFastInt.html +37 -41
- data/doc/MDArray/IteratorFastLong.html +37 -41
- data/doc/MDArray/IteratorFastShort.html +37 -41
- data/doc/MDArray/Section.html +561 -0
- data/doc/Nashorn.html +1407 -0
- data/doc/NetCDF.html +749 -0
- data/doc/NetCDF/Attribute.html +875 -0
- data/doc/NetCDF/AttributeWriter.html +286 -0
- data/doc/NetCDF/CDMNode.html +460 -0
- data/doc/NetCDF/Dimension.html +559 -0
- data/doc/NetCDF/DimensionWriter.html +642 -0
- data/doc/NetCDF/File.html +1593 -0
- data/doc/NetCDF/FileParent.html +674 -0
- data/doc/NetCDF/FileWriter.html +2875 -0
- data/doc/NetCDF/Group.html +685 -0
- data/doc/NetCDF/GroupWriter.html +851 -0
- data/doc/NetCDF/TimeVariable.html +646 -0
- data/doc/NetCDF/Variable.html +2994 -0
- data/doc/NetCDF/VariableWriter.html +420 -0
- data/doc/NonNumericalMDArray.html +11 -11
- data/doc/NumericFunctions.html +38 -30
- data/doc/NumericFunctions/Abs.html +189 -0
- data/doc/NumericFunctions/Add.html +189 -0
- data/doc/NumericFunctions/Ceil.html +189 -0
- data/doc/NumericFunctions/Cube.html +189 -0
- data/doc/NumericFunctions/Div.html +189 -0
- data/doc/NumericFunctions/Floor.html +189 -0
- data/doc/NumericFunctions/Fourth.html +189 -0
- data/doc/NumericFunctions/IsZero.html +189 -0
- data/doc/NumericFunctions/Max.html +189 -0
- data/doc/NumericFunctions/Min.html +189 -0
- data/doc/NumericFunctions/Mul.html +189 -0
- data/doc/NumericFunctions/Power.html +189 -0
- data/doc/NumericFunctions/Square.html +189 -0
- data/doc/NumericFunctions/Sub.html +189 -0
- data/doc/NumericFunctions/Truncate.html +189 -0
- data/doc/NumericalMDArray.html +14 -15
- data/doc/Operator.html +318 -109
- data/doc/Proc.html +120 -129
- data/doc/RubyBinaryOperator.html +66 -70
- data/doc/RubyFunctions.html +572 -27
- data/doc/RubyMath.html +18 -8
- data/doc/RubyMath/Acos.html +189 -0
- data/doc/RubyMath/Acosh.html +189 -0
- data/doc/RubyMath/Asin.html +189 -0
- data/doc/RubyMath/Asinh.html +189 -0
- data/doc/RubyMath/Atan.html +189 -0
- data/doc/RubyMath/Atan2.html +189 -0
- data/doc/RubyMath/Atanh.html +189 -0
- data/doc/RubyMath/Cbrt.html +189 -0
- data/doc/RubyMath/Cos.html +189 -0
- data/doc/RubyMath/Cosh.html +189 -0
- data/doc/RubyMath/Erf.html +189 -0
- data/doc/RubyMath/Erfc.html +189 -0
- data/doc/RubyMath/Exp.html +189 -0
- data/doc/RubyMath/Gamma.html +189 -0
- data/doc/RubyMath/Hypot.html +189 -0
- data/doc/RubyMath/Ldexp.html +189 -0
- data/doc/RubyMath/Log.html +189 -0
- data/doc/RubyMath/Log10.html +189 -0
- data/doc/RubyMath/Log2.html +189 -0
- data/doc/RubyMath/Neg.html +189 -0
- data/doc/RubyMath/Sin.html +189 -0
- data/doc/RubyMath/Sinh.html +189 -0
- data/doc/RubyMath/Sqrt.html +189 -0
- data/doc/RubyMath/Tan.html +189 -0
- data/doc/RubyMath/Tanh.html +189 -0
- data/doc/RubyStats.html +8 -8
- data/doc/RubyUnaryOperator.html +61 -65
- data/doc/ShortMDArray.html +69 -14
- data/doc/Sol.html +700 -0
- data/doc/Sol/BarChart.html +181 -0
- data/doc/Sol/BaseChart.html +800 -0
- data/doc/Sol/Bootstrap.html +1137 -0
- data/doc/Sol/Bridge.html +586 -0
- data/doc/Sol/Chart.html +1162 -0
- data/doc/Sol/CoordinateChart.html +679 -0
- data/doc/Sol/Dashboard.html +2094 -0
- data/doc/Sol/Dashboard/DCFX.html +786 -0
- data/doc/Sol/Dashboard/MyHandle.html +338 -0
- data/doc/Sol/Dashboard/MyService.html +202 -0
- data/doc/Sol/Dashboard/MyTask.html +291 -0
- data/doc/Sol/Interval.html +1213 -0
- data/doc/Sol/LineChart.html +346 -0
- data/doc/Sol/LinearScale.html +334 -0
- data/doc/Sol/Margins.html +219 -0
- data/doc/Sol/OrdinalScale.html +263 -0
- data/doc/Sol/Scale.html +462 -0
- data/doc/Sol/Stack.html +199 -0
- data/doc/Sol/TimeScale.html +397 -0
- data/doc/StatList.html +110 -125
- data/doc/StringMDArray.html +10 -10
- data/doc/StructureMDArray.html +10 -10
- data/doc/UnaryOperator.html +20 -21
- data/doc/UserFunction.html +51 -49
- data/doc/_index.html +881 -106
- data/doc/class_list.html +8 -3
- data/doc/css/style.css +2 -1
- data/doc/file.README.html +455 -104
- data/doc/file_list.html +7 -2
- data/doc/frames.html +5 -7
- data/doc/index.html +455 -104
- data/doc/js/app.js +7 -2
- data/doc/js/full_list.js +11 -3
- data/doc/method_list.html +3170 -1233
- data/doc/top-level-namespace.html +31 -8
- data/lib/colt/matrix/algebra.rb +5 -5
- data/lib/mdarray.rb +6 -3
- data/lib/mdarray/csv.rb +25 -5
- data/lib/mdarray/fast_operators.rb +1 -1
- data/lib/mdarray/function_creation.rb +3 -1
- data/lib/mdarray/hierarchy.rb +2 -0
- data/lib/mdarray/operators.rb +1 -1
- data/lib/mdarray/ruby_functions.rb +8 -4
- data/lib/mdarray/ruby_math.rb +0 -28
- data/test/colt/matrix/test_matrix2d_floatingalgebra.rb +31 -7
- data/test/complete.rb +4 -4
- data/test/mdarray/PETR4_2014.csv +249 -0
- data/test/mdarray/VALE_2014.csv +253 -0
- data/test/mdarray/VALE_PETR4.csv +501 -0
- data/test/mdarray/arithmetic_casting.rb +1 -0
- data/test/mdarray/test_access.rb +1 -0
- data/test/mdarray/test_boolean.rb +1 -0
- data/test/mdarray/test_comparison.rb +1 -0
- data/test/mdarray/test_complete.rb +2 -5
- data/test/mdarray/test_counter.rb +1 -0
- data/test/mdarray/test_creation.rb +1 -0
- data/test/mdarray/test_csv.rb +51 -0
- data/test/mdarray/test_error.rb +1 -0
- data/test/mdarray/test_non_numeric.rb +1 -1
- data/test/mdarray/test_operator.rb +31 -14
- data/test/mdarray/test_performance.rb +2 -1
- data/test/mdarray/test_printing.rb +1 -0
- data/test/mdarray/test_sections.rb +1 -0
- data/test/mdarray/test_shape.rb +1 -0
- data/test/mdarray/test_trigonometry.rb +1 -0
- data/test/mdarray/test_views.rb +1 -0
- data/vendor/mdarray.jar +0 -0
- data/vendor/{netcdfAll-4.5_0.jar → netcdfAll-4.6.jar} +0 -0
- data/vendor/slf4j-jdk14-1.7.12.jar +0 -0
- data/version.rb +1 -1
- metadata +247 -139
- data/lib/env.rb +0 -12
- data/lib/mdarray/lazy_mdarray.rb +0 -315
- data/lib/mdarray/lazy_operators.rb +0 -174
- data/test/env.rb +0 -8
- data/test/mdarray/test_lazy.rb +0 -306
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>
|
|
7
|
+
Class: Sol::Dashboard::MyTask
|
|
8
|
+
|
|
9
|
+
— Documentation by YARD 0.8.7.6
|
|
10
|
+
|
|
11
|
+
</title>
|
|
12
|
+
|
|
13
|
+
<link rel="stylesheet" href="../../css/style.css" type="text/css" charset="utf-8" />
|
|
14
|
+
|
|
15
|
+
<link rel="stylesheet" href="../../css/common.css" type="text/css" charset="utf-8" />
|
|
16
|
+
|
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
|
18
|
+
hasFrames = window.top.frames.main ? true : false;
|
|
19
|
+
relpath = '../../';
|
|
20
|
+
framesUrl = "../../frames.html#!Sol/Dashboard/MyTask.html";
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
<script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
|
|
25
|
+
|
|
26
|
+
<script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
</head>
|
|
30
|
+
<body>
|
|
31
|
+
<div id="header">
|
|
32
|
+
<div id="menu">
|
|
33
|
+
|
|
34
|
+
<a href="../../_index.html">Index (M)</a> »
|
|
35
|
+
<span class='title'><span class='object_link'><a href="../../Sol.html" title="Sol (class)">Sol</a></span></span> » <span class='title'><span class='object_link'><a href="../Dashboard.html" title="Sol::Dashboard (class)">Dashboard</a></span></span>
|
|
36
|
+
»
|
|
37
|
+
<span class="title">MyTask</span>
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<div id="search">
|
|
44
|
+
|
|
45
|
+
<a class="full_list_link" id="class_list_link"
|
|
46
|
+
href="../../class_list.html">
|
|
47
|
+
Class List
|
|
48
|
+
</a>
|
|
49
|
+
|
|
50
|
+
<a class="full_list_link" id="method_list_link"
|
|
51
|
+
href="../../method_list.html">
|
|
52
|
+
Method List
|
|
53
|
+
</a>
|
|
54
|
+
|
|
55
|
+
<a class="full_list_link" id="file_list_link"
|
|
56
|
+
href="../../file_list.html">
|
|
57
|
+
File List
|
|
58
|
+
</a>
|
|
59
|
+
|
|
60
|
+
</div>
|
|
61
|
+
<div class="clear"></div>
|
|
62
|
+
</div>
|
|
63
|
+
|
|
64
|
+
<iframe id="search_frame"></iframe>
|
|
65
|
+
|
|
66
|
+
<div id="content"><h1>Class: Sol::Dashboard::MyTask
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
</h1>
|
|
71
|
+
|
|
72
|
+
<dl class="box">
|
|
73
|
+
|
|
74
|
+
<dt class="r1">Inherits:</dt>
|
|
75
|
+
<dd class="r1">
|
|
76
|
+
<span class="inheritName">Object</span>
|
|
77
|
+
|
|
78
|
+
<ul class="fullTree">
|
|
79
|
+
<li>Object</li>
|
|
80
|
+
|
|
81
|
+
<li class="next">Sol::Dashboard::MyTask</li>
|
|
82
|
+
|
|
83
|
+
</ul>
|
|
84
|
+
<a href="#" class="inheritanceTree">show all</a>
|
|
85
|
+
|
|
86
|
+
</dd>
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
<dt class="r2 last">Defined in:</dt>
|
|
97
|
+
<dd class="r2 last">lib/webview/dcfx.rb</dd>
|
|
98
|
+
|
|
99
|
+
</dl>
|
|
100
|
+
<div class="clear"></div>
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
<h2>
|
|
111
|
+
Instance Method Summary
|
|
112
|
+
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
|
|
113
|
+
</h2>
|
|
114
|
+
|
|
115
|
+
<ul class="summary">
|
|
116
|
+
|
|
117
|
+
<li class="public ">
|
|
118
|
+
<span class="summary_signature">
|
|
119
|
+
|
|
120
|
+
<a href="#call-instance_method" title="#call (instance method)">- (Object) <strong>call</strong> </a>
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
</span>
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
<span class="summary_desc"><div class='inline'>
|
|
135
|
+
<p>----------------------------------------------------------------------------------------.</p>
|
|
136
|
+
</div></span>
|
|
137
|
+
|
|
138
|
+
</li>
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
<li class="public ">
|
|
142
|
+
<span class="summary_signature">
|
|
143
|
+
|
|
144
|
+
<a href="#initialize-instance_method" title="#initialize (instance method)">- (MyTask) <strong>initialize</strong> </a>
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
</span>
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
<span class="note title constructor">constructor</span>
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
<span class="summary_desc"><div class='inline'>
|
|
161
|
+
<p>A new instance of MyTask.</p>
|
|
162
|
+
</div></span>
|
|
163
|
+
|
|
164
|
+
</li>
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
</ul>
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
<div id="constructor_details" class="method_details_list">
|
|
171
|
+
<h2>Constructor Details</h2>
|
|
172
|
+
|
|
173
|
+
<div class="method_details first">
|
|
174
|
+
<h3 class="signature first" id="initialize-instance_method">
|
|
175
|
+
|
|
176
|
+
- (<tt><span class='object_link'><a href="" title="Sol::Dashboard::MyTask (class)">MyTask</a></span></tt>) <strong>initialize</strong>
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
</h3><div class="docstring">
|
|
183
|
+
<div class="discussion">
|
|
184
|
+
|
|
185
|
+
<p>Returns a new instance of MyTask</p>
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
</div>
|
|
189
|
+
</div>
|
|
190
|
+
<div class="tags">
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
</div><table class="source_code">
|
|
194
|
+
<tr>
|
|
195
|
+
<td>
|
|
196
|
+
<pre class="lines">
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
36
|
|
200
|
+
37
|
|
201
|
+
38</pre>
|
|
202
|
+
</td>
|
|
203
|
+
<td>
|
|
204
|
+
<pre class="code"><span class="info file"># File 'lib/webview/dcfx.rb', line 36</span>
|
|
205
|
+
|
|
206
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span>
|
|
207
|
+
<span class='ivar'>@bridge</span> <span class='op'>=</span> <span class='const'>Bridge</span><span class='period'>.</span><span class='id identifier rubyid_instance'>instance</span>
|
|
208
|
+
<span class='kw'>end</span></pre>
|
|
209
|
+
</td>
|
|
210
|
+
</tr>
|
|
211
|
+
</table>
|
|
212
|
+
</div>
|
|
213
|
+
|
|
214
|
+
</div>
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
<div id="instance_method_details" class="method_details_list">
|
|
218
|
+
<h2>Instance Method Details</h2>
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
<div class="method_details first">
|
|
222
|
+
<h3 class="signature first" id="call-instance_method">
|
|
223
|
+
|
|
224
|
+
- (<tt>Object</tt>) <strong>call</strong>
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
</h3><div class="docstring">
|
|
231
|
+
<div class="discussion">
|
|
232
|
+
<hr>
|
|
233
|
+
<hr>
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
</div>
|
|
237
|
+
</div>
|
|
238
|
+
<div class="tags">
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
</div><table class="source_code">
|
|
242
|
+
<tr>
|
|
243
|
+
<td>
|
|
244
|
+
<pre class="lines">
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
44
|
|
248
|
+
45
|
|
249
|
+
46
|
|
250
|
+
47
|
|
251
|
+
48
|
|
252
|
+
49
|
|
253
|
+
50
|
|
254
|
+
51
|
|
255
|
+
52
|
|
256
|
+
53
|
|
257
|
+
54
|
|
258
|
+
55</pre>
|
|
259
|
+
</td>
|
|
260
|
+
<td>
|
|
261
|
+
<pre class="code"><span class="info file"># File 'lib/webview/dcfx.rb', line 44</span>
|
|
262
|
+
|
|
263
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_call'>call</span>
|
|
264
|
+
<span class='kw'>begin</span>
|
|
265
|
+
<span class='id identifier rubyid_msg'>msg</span> <span class='op'>=</span> <span class='ivar'>@bridge</span><span class='period'>.</span><span class='id identifier rubyid_take'>take</span>
|
|
266
|
+
<span class='comment'># p msg
|
|
267
|
+
</span> <span class='kw'>return</span> <span class='id identifier rubyid_msg'>msg</span> <span class='comment'># this is the returned message to the handle
|
|
268
|
+
</span> <span class='kw'>rescue</span> <span class='id identifier rubyid_java'>java</span><span class='period'>.</span><span class='id identifier rubyid_lang'>lang</span><span class='period'>.</span><span class='const'>InterruptedException</span> <span class='op'>=></span> <span class='id identifier rubyid_e'>e</span>
|
|
269
|
+
<span class='kw'>if</span> <span class='lparen'>(</span><span class='id identifier rubyid_is_cancelled'>is_cancelled</span><span class='rparen'>)</span>
|
|
270
|
+
<span class='id identifier rubyid_updateMessage'>updateMessage</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>Cancelled</span><span class='tstring_end'>"</span></span><span class='rparen'>)</span>
|
|
271
|
+
<span class='kw'>end</span>
|
|
272
|
+
<span class='kw'>end</span>
|
|
273
|
+
|
|
274
|
+
<span class='kw'>end</span></pre>
|
|
275
|
+
</td>
|
|
276
|
+
</tr>
|
|
277
|
+
</table>
|
|
278
|
+
</div>
|
|
279
|
+
|
|
280
|
+
</div>
|
|
281
|
+
|
|
282
|
+
</div>
|
|
283
|
+
|
|
284
|
+
<div id="footer">
|
|
285
|
+
Generated on Tue Jul 14 18:09:14 2015 by
|
|
286
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
287
|
+
0.8.7.6 (ruby-1.9.3).
|
|
288
|
+
</div>
|
|
289
|
+
|
|
290
|
+
</body>
|
|
291
|
+
</html>
|
|
@@ -0,0 +1,1213 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>
|
|
7
|
+
Class: Sol::Interval
|
|
8
|
+
|
|
9
|
+
— Documentation by YARD 0.8.7.6
|
|
10
|
+
|
|
11
|
+
</title>
|
|
12
|
+
|
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
|
|
14
|
+
|
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
|
|
16
|
+
|
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
|
18
|
+
hasFrames = window.top.frames.main ? true : false;
|
|
19
|
+
relpath = '../';
|
|
20
|
+
framesUrl = "../frames.html#!Sol/Interval.html";
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
|
25
|
+
|
|
26
|
+
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
</head>
|
|
30
|
+
<body>
|
|
31
|
+
<div id="header">
|
|
32
|
+
<div id="menu">
|
|
33
|
+
|
|
34
|
+
<a href="../_index.html">Index (I)</a> »
|
|
35
|
+
<span class='title'><span class='object_link'><a href="../Sol.html" title="Sol (class)">Sol</a></span></span>
|
|
36
|
+
»
|
|
37
|
+
<span class="title">Interval</span>
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<div id="search">
|
|
44
|
+
|
|
45
|
+
<a class="full_list_link" id="class_list_link"
|
|
46
|
+
href="../class_list.html">
|
|
47
|
+
Class List
|
|
48
|
+
</a>
|
|
49
|
+
|
|
50
|
+
<a class="full_list_link" id="method_list_link"
|
|
51
|
+
href="../method_list.html">
|
|
52
|
+
Method List
|
|
53
|
+
</a>
|
|
54
|
+
|
|
55
|
+
<a class="full_list_link" id="file_list_link"
|
|
56
|
+
href="../file_list.html">
|
|
57
|
+
File List
|
|
58
|
+
</a>
|
|
59
|
+
|
|
60
|
+
</div>
|
|
61
|
+
<div class="clear"></div>
|
|
62
|
+
</div>
|
|
63
|
+
|
|
64
|
+
<iframe id="search_frame"></iframe>
|
|
65
|
+
|
|
66
|
+
<div id="content"><h1>Class: Sol::Interval
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
</h1>
|
|
71
|
+
|
|
72
|
+
<dl class="box">
|
|
73
|
+
|
|
74
|
+
<dt class="r1">Inherits:</dt>
|
|
75
|
+
<dd class="r1">
|
|
76
|
+
<span class="inheritName">Object</span>
|
|
77
|
+
|
|
78
|
+
<ul class="fullTree">
|
|
79
|
+
<li>Object</li>
|
|
80
|
+
|
|
81
|
+
<li class="next">Sol::Interval</li>
|
|
82
|
+
|
|
83
|
+
</ul>
|
|
84
|
+
<a href="#" class="inheritanceTree">show all</a>
|
|
85
|
+
|
|
86
|
+
</dd>
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
<dt class="r2 last">Defined in:</dt>
|
|
97
|
+
<dd class="r2 last">lib/webview/interval.rb</dd>
|
|
98
|
+
|
|
99
|
+
</dl>
|
|
100
|
+
<div class="clear"></div>
|
|
101
|
+
|
|
102
|
+
<h2>Overview</h2><div class="docstring">
|
|
103
|
+
<div class="discussion">
|
|
104
|
+
|
|
105
|
+
<h6 id="label-"></h6>
|
|
106
|
+
|
|
107
|
+
<h6 id="label-"></h6>
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
<div class="tags">
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
</div>
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
<h2>Instance Attribute Summary <small>(<a href="#" class="summary_toggle">collapse</a>)</small></h2>
|
|
120
|
+
<ul class="summary">
|
|
121
|
+
|
|
122
|
+
<li class="public ">
|
|
123
|
+
<span class="summary_signature">
|
|
124
|
+
|
|
125
|
+
<a href="#spec-instance_method" title="#spec (instance method)">- (Object) <strong>spec</strong> </a>
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
</span>
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
<span class="note title readonly">readonly</span>
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
<span class="summary_desc"><div class='inline'>
|
|
145
|
+
<p>Returns the value of attribute spec.</p>
|
|
146
|
+
</div></span>
|
|
147
|
+
|
|
148
|
+
</li>
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
</ul>
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
<h2>
|
|
158
|
+
Instance Method Summary
|
|
159
|
+
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
|
|
160
|
+
</h2>
|
|
161
|
+
|
|
162
|
+
<ul class="summary">
|
|
163
|
+
|
|
164
|
+
<li class="public ">
|
|
165
|
+
<span class="summary_signature">
|
|
166
|
+
|
|
167
|
+
<a href="#day-instance_method" title="#day (instance method)">- (Object) <strong>day</strong> </a>
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
</span>
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
<span class="summary_desc"><div class='inline'>
|
|
182
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
183
|
+
</div></span>
|
|
184
|
+
|
|
185
|
+
</li>
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
<li class="public ">
|
|
189
|
+
<span class="summary_signature">
|
|
190
|
+
|
|
191
|
+
<a href="#friday-instance_method" title="#friday (instance method)">- (Object) <strong>friday</strong> </a>
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
</span>
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
<span class="summary_desc"><div class='inline'>
|
|
206
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
207
|
+
</div></span>
|
|
208
|
+
|
|
209
|
+
</li>
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
<li class="public ">
|
|
213
|
+
<span class="summary_signature">
|
|
214
|
+
|
|
215
|
+
<a href="#hour-instance_method" title="#hour (instance method)">- (Object) <strong>hour</strong> </a>
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
</span>
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
<span class="summary_desc"><div class='inline'>
|
|
230
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
231
|
+
</div></span>
|
|
232
|
+
|
|
233
|
+
</li>
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
<li class="public ">
|
|
237
|
+
<span class="summary_signature">
|
|
238
|
+
|
|
239
|
+
<a href="#initialize-instance_method" title="#initialize (instance method)">- (Interval) <strong>initialize</strong> </a>
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
</span>
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
<span class="note title constructor">constructor</span>
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
<span class="summary_desc"><div class='inline'>
|
|
256
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
257
|
+
</div></span>
|
|
258
|
+
|
|
259
|
+
</li>
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
<li class="public ">
|
|
263
|
+
<span class="summary_signature">
|
|
264
|
+
|
|
265
|
+
<a href="#minute-instance_method" title="#minute (instance method)">- (Object) <strong>minute</strong> </a>
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
</span>
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
<span class="summary_desc"><div class='inline'>
|
|
280
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
281
|
+
</div></span>
|
|
282
|
+
|
|
283
|
+
</li>
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
<li class="public ">
|
|
287
|
+
<span class="summary_signature">
|
|
288
|
+
|
|
289
|
+
<a href="#monday-instance_method" title="#monday (instance method)">- (Object) <strong>monday</strong> </a>
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
</span>
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
<span class="summary_desc"><div class='inline'>
|
|
304
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
305
|
+
</div></span>
|
|
306
|
+
|
|
307
|
+
</li>
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
<li class="public ">
|
|
311
|
+
<span class="summary_signature">
|
|
312
|
+
|
|
313
|
+
<a href="#month-instance_method" title="#month (instance method)">- (Object) <strong>month</strong> </a>
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
</span>
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
<span class="summary_desc"><div class='inline'>
|
|
328
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
329
|
+
</div></span>
|
|
330
|
+
|
|
331
|
+
</li>
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
<li class="public ">
|
|
335
|
+
<span class="summary_signature">
|
|
336
|
+
|
|
337
|
+
<a href="#saturday-instance_method" title="#saturday (instance method)">- (Object) <strong>saturday</strong> </a>
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
</span>
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
<span class="summary_desc"><div class='inline'>
|
|
352
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
353
|
+
</div></span>
|
|
354
|
+
|
|
355
|
+
</li>
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
<li class="public ">
|
|
359
|
+
<span class="summary_signature">
|
|
360
|
+
|
|
361
|
+
<a href="#second-instance_method" title="#second (instance method)">- (Object) <strong>second</strong> </a>
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
</span>
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
<span class="summary_desc"><div class='inline'>
|
|
376
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
377
|
+
</div></span>
|
|
378
|
+
|
|
379
|
+
</li>
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
<li class="public ">
|
|
383
|
+
<span class="summary_signature">
|
|
384
|
+
|
|
385
|
+
<a href="#sunday-instance_method" title="#sunday (instance method)">- (Object) <strong>sunday</strong> </a>
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
</span>
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
<span class="summary_desc"><div class='inline'>
|
|
400
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
401
|
+
</div></span>
|
|
402
|
+
|
|
403
|
+
</li>
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
<li class="public ">
|
|
407
|
+
<span class="summary_signature">
|
|
408
|
+
|
|
409
|
+
<a href="#thursday-instance_method" title="#thursday (instance method)">- (Object) <strong>thursday</strong> </a>
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
</span>
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
<span class="summary_desc"><div class='inline'>
|
|
424
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
425
|
+
</div></span>
|
|
426
|
+
|
|
427
|
+
</li>
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
<li class="public ">
|
|
431
|
+
<span class="summary_signature">
|
|
432
|
+
|
|
433
|
+
<a href="#tuesday-instance_method" title="#tuesday (instance method)">- (Object) <strong>tuesday</strong> </a>
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
</span>
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
<span class="summary_desc"><div class='inline'>
|
|
448
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
449
|
+
</div></span>
|
|
450
|
+
|
|
451
|
+
</li>
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
<li class="public ">
|
|
455
|
+
<span class="summary_signature">
|
|
456
|
+
|
|
457
|
+
<a href="#wednesday-instance_method" title="#wednesday (instance method)">- (Object) <strong>wednesday</strong> </a>
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
</span>
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
<span class="summary_desc"><div class='inline'>
|
|
472
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
473
|
+
</div></span>
|
|
474
|
+
|
|
475
|
+
</li>
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
<li class="public ">
|
|
479
|
+
<span class="summary_signature">
|
|
480
|
+
|
|
481
|
+
<a href="#week-instance_method" title="#week (instance method)">- (Object) <strong>week</strong> </a>
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
</span>
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
<span class="summary_desc"><div class='inline'>
|
|
496
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
497
|
+
</div></span>
|
|
498
|
+
|
|
499
|
+
</li>
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
<li class="public ">
|
|
503
|
+
<span class="summary_signature">
|
|
504
|
+
|
|
505
|
+
<a href="#year-instance_method" title="#year (instance method)">- (Object) <strong>year</strong> </a>
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
</span>
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
<span class="summary_desc"><div class='inline'>
|
|
520
|
+
<p>------------------------------------------------------------------------------------.</p>
|
|
521
|
+
</div></span>
|
|
522
|
+
|
|
523
|
+
</li>
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
</ul>
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
<div id="constructor_details" class="method_details_list">
|
|
530
|
+
<h2>Constructor Details</h2>
|
|
531
|
+
|
|
532
|
+
<div class="method_details first">
|
|
533
|
+
<h3 class="signature first" id="initialize-instance_method">
|
|
534
|
+
|
|
535
|
+
- (<tt><span class='object_link'><a href="" title="Sol::Interval (class)">Interval</a></span></tt>) <strong>initialize</strong>
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
</h3><div class="docstring">
|
|
542
|
+
<div class="discussion">
|
|
543
|
+
<hr>
|
|
544
|
+
<hr>
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
</div>
|
|
548
|
+
</div>
|
|
549
|
+
<div class="tags">
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
</div><table class="source_code">
|
|
553
|
+
<tr>
|
|
554
|
+
<td>
|
|
555
|
+
<pre class="lines">
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
38
|
|
559
|
+
39
|
|
560
|
+
40</pre>
|
|
561
|
+
</td>
|
|
562
|
+
<td>
|
|
563
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 38</span>
|
|
564
|
+
|
|
565
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span>
|
|
566
|
+
<span class='ivar'>@spec</span> <span class='op'>=</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>d3.time</span><span class='tstring_end'>"</span></span>
|
|
567
|
+
<span class='kw'>end</span></pre>
|
|
568
|
+
</td>
|
|
569
|
+
</tr>
|
|
570
|
+
</table>
|
|
571
|
+
</div>
|
|
572
|
+
|
|
573
|
+
</div>
|
|
574
|
+
|
|
575
|
+
<div id="instance_attr_details" class="attr_details">
|
|
576
|
+
<h2>Instance Attribute Details</h2>
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
<span id=""></span>
|
|
580
|
+
<div class="method_details first">
|
|
581
|
+
<h3 class="signature first" id="spec-instance_method">
|
|
582
|
+
|
|
583
|
+
- (<tt>Object</tt>) <strong>spec</strong> <span class="extras">(readonly)</span>
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
</h3><div class="docstring">
|
|
590
|
+
<div class="discussion">
|
|
591
|
+
|
|
592
|
+
<p>Returns the value of attribute spec</p>
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
</div>
|
|
596
|
+
</div>
|
|
597
|
+
<div class="tags">
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
</div><table class="source_code">
|
|
601
|
+
<tr>
|
|
602
|
+
<td>
|
|
603
|
+
<pre class="lines">
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
32
|
|
607
|
+
33
|
|
608
|
+
34</pre>
|
|
609
|
+
</td>
|
|
610
|
+
<td>
|
|
611
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 32</span>
|
|
612
|
+
|
|
613
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_spec'>spec</span>
|
|
614
|
+
<span class='ivar'>@spec</span>
|
|
615
|
+
<span class='kw'>end</span></pre>
|
|
616
|
+
</td>
|
|
617
|
+
</tr>
|
|
618
|
+
</table>
|
|
619
|
+
</div>
|
|
620
|
+
|
|
621
|
+
</div>
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
<div id="instance_method_details" class="method_details_list">
|
|
625
|
+
<h2>Instance Method Details</h2>
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
<div class="method_details first">
|
|
629
|
+
<h3 class="signature first" id="day-instance_method">
|
|
630
|
+
|
|
631
|
+
- (<tt>Object</tt>) <strong>day</strong>
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
</h3><div class="docstring">
|
|
638
|
+
<div class="discussion">
|
|
639
|
+
<hr>
|
|
640
|
+
<hr>
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
</div>
|
|
644
|
+
</div>
|
|
645
|
+
<div class="tags">
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
</div><table class="source_code">
|
|
649
|
+
<tr>
|
|
650
|
+
<td>
|
|
651
|
+
<pre class="lines">
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
70
|
|
655
|
+
71
|
|
656
|
+
72</pre>
|
|
657
|
+
</td>
|
|
658
|
+
<td>
|
|
659
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 70</span>
|
|
660
|
+
|
|
661
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_day'>day</span>
|
|
662
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.day</span><span class='tstring_end'>"</span></span>
|
|
663
|
+
<span class='kw'>end</span></pre>
|
|
664
|
+
</td>
|
|
665
|
+
</tr>
|
|
666
|
+
</table>
|
|
667
|
+
</div>
|
|
668
|
+
|
|
669
|
+
<div class="method_details ">
|
|
670
|
+
<h3 class="signature " id="friday-instance_method">
|
|
671
|
+
|
|
672
|
+
- (<tt>Object</tt>) <strong>friday</strong>
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
</h3><div class="docstring">
|
|
679
|
+
<div class="discussion">
|
|
680
|
+
<hr>
|
|
681
|
+
<hr>
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
</div>
|
|
685
|
+
</div>
|
|
686
|
+
<div class="tags">
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
</div><table class="source_code">
|
|
690
|
+
<tr>
|
|
691
|
+
<td>
|
|
692
|
+
<pre class="lines">
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
126
|
|
696
|
+
127
|
|
697
|
+
128</pre>
|
|
698
|
+
</td>
|
|
699
|
+
<td>
|
|
700
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 126</span>
|
|
701
|
+
|
|
702
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_friday'>friday</span>
|
|
703
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.friday</span><span class='tstring_end'>"</span></span>
|
|
704
|
+
<span class='kw'>end</span></pre>
|
|
705
|
+
</td>
|
|
706
|
+
</tr>
|
|
707
|
+
</table>
|
|
708
|
+
</div>
|
|
709
|
+
|
|
710
|
+
<div class="method_details ">
|
|
711
|
+
<h3 class="signature " id="hour-instance_method">
|
|
712
|
+
|
|
713
|
+
- (<tt>Object</tt>) <strong>hour</strong>
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
</h3><div class="docstring">
|
|
720
|
+
<div class="discussion">
|
|
721
|
+
<hr>
|
|
722
|
+
<hr>
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
</div>
|
|
726
|
+
</div>
|
|
727
|
+
<div class="tags">
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
</div><table class="source_code">
|
|
731
|
+
<tr>
|
|
732
|
+
<td>
|
|
733
|
+
<pre class="lines">
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
62
|
|
737
|
+
63
|
|
738
|
+
64</pre>
|
|
739
|
+
</td>
|
|
740
|
+
<td>
|
|
741
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 62</span>
|
|
742
|
+
|
|
743
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_hour'>hour</span>
|
|
744
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.hour</span><span class='tstring_end'>"</span></span>
|
|
745
|
+
<span class='kw'>end</span></pre>
|
|
746
|
+
</td>
|
|
747
|
+
</tr>
|
|
748
|
+
</table>
|
|
749
|
+
</div>
|
|
750
|
+
|
|
751
|
+
<div class="method_details ">
|
|
752
|
+
<h3 class="signature " id="minute-instance_method">
|
|
753
|
+
|
|
754
|
+
- (<tt>Object</tt>) <strong>minute</strong>
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
</h3><div class="docstring">
|
|
761
|
+
<div class="discussion">
|
|
762
|
+
<hr>
|
|
763
|
+
<hr>
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
</div>
|
|
767
|
+
</div>
|
|
768
|
+
<div class="tags">
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
</div><table class="source_code">
|
|
772
|
+
<tr>
|
|
773
|
+
<td>
|
|
774
|
+
<pre class="lines">
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
54
|
|
778
|
+
55
|
|
779
|
+
56</pre>
|
|
780
|
+
</td>
|
|
781
|
+
<td>
|
|
782
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 54</span>
|
|
783
|
+
|
|
784
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_minute'>minute</span>
|
|
785
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.minute</span><span class='tstring_end'>"</span></span>
|
|
786
|
+
<span class='kw'>end</span></pre>
|
|
787
|
+
</td>
|
|
788
|
+
</tr>
|
|
789
|
+
</table>
|
|
790
|
+
</div>
|
|
791
|
+
|
|
792
|
+
<div class="method_details ">
|
|
793
|
+
<h3 class="signature " id="monday-instance_method">
|
|
794
|
+
|
|
795
|
+
- (<tt>Object</tt>) <strong>monday</strong>
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
</h3><div class="docstring">
|
|
802
|
+
<div class="discussion">
|
|
803
|
+
<hr>
|
|
804
|
+
<hr>
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
</div>
|
|
808
|
+
</div>
|
|
809
|
+
<div class="tags">
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
</div><table class="source_code">
|
|
813
|
+
<tr>
|
|
814
|
+
<td>
|
|
815
|
+
<pre class="lines">
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
94
|
|
819
|
+
95
|
|
820
|
+
96</pre>
|
|
821
|
+
</td>
|
|
822
|
+
<td>
|
|
823
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 94</span>
|
|
824
|
+
|
|
825
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_monday'>monday</span>
|
|
826
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.monday</span><span class='tstring_end'>"</span></span>
|
|
827
|
+
<span class='kw'>end</span></pre>
|
|
828
|
+
</td>
|
|
829
|
+
</tr>
|
|
830
|
+
</table>
|
|
831
|
+
</div>
|
|
832
|
+
|
|
833
|
+
<div class="method_details ">
|
|
834
|
+
<h3 class="signature " id="month-instance_method">
|
|
835
|
+
|
|
836
|
+
- (<tt>Object</tt>) <strong>month</strong>
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
</h3><div class="docstring">
|
|
843
|
+
<div class="discussion">
|
|
844
|
+
<hr>
|
|
845
|
+
<hr>
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
</div>
|
|
849
|
+
</div>
|
|
850
|
+
<div class="tags">
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
</div><table class="source_code">
|
|
854
|
+
<tr>
|
|
855
|
+
<td>
|
|
856
|
+
<pre class="lines">
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
142
|
|
860
|
+
143
|
|
861
|
+
144</pre>
|
|
862
|
+
</td>
|
|
863
|
+
<td>
|
|
864
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 142</span>
|
|
865
|
+
|
|
866
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_month'>month</span>
|
|
867
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.month</span><span class='tstring_end'>"</span></span>
|
|
868
|
+
<span class='kw'>end</span></pre>
|
|
869
|
+
</td>
|
|
870
|
+
</tr>
|
|
871
|
+
</table>
|
|
872
|
+
</div>
|
|
873
|
+
|
|
874
|
+
<div class="method_details ">
|
|
875
|
+
<h3 class="signature " id="saturday-instance_method">
|
|
876
|
+
|
|
877
|
+
- (<tt>Object</tt>) <strong>saturday</strong>
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
</h3><div class="docstring">
|
|
884
|
+
<div class="discussion">
|
|
885
|
+
<hr>
|
|
886
|
+
<hr>
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
</div>
|
|
890
|
+
</div>
|
|
891
|
+
<div class="tags">
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
</div><table class="source_code">
|
|
895
|
+
<tr>
|
|
896
|
+
<td>
|
|
897
|
+
<pre class="lines">
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
134
|
|
901
|
+
135
|
|
902
|
+
136</pre>
|
|
903
|
+
</td>
|
|
904
|
+
<td>
|
|
905
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 134</span>
|
|
906
|
+
|
|
907
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_saturday'>saturday</span>
|
|
908
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.saturday</span><span class='tstring_end'>"</span></span>
|
|
909
|
+
<span class='kw'>end</span></pre>
|
|
910
|
+
</td>
|
|
911
|
+
</tr>
|
|
912
|
+
</table>
|
|
913
|
+
</div>
|
|
914
|
+
|
|
915
|
+
<div class="method_details ">
|
|
916
|
+
<h3 class="signature " id="second-instance_method">
|
|
917
|
+
|
|
918
|
+
- (<tt>Object</tt>) <strong>second</strong>
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
</h3><div class="docstring">
|
|
925
|
+
<div class="discussion">
|
|
926
|
+
<hr>
|
|
927
|
+
<hr>
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
</div>
|
|
931
|
+
</div>
|
|
932
|
+
<div class="tags">
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
</div><table class="source_code">
|
|
936
|
+
<tr>
|
|
937
|
+
<td>
|
|
938
|
+
<pre class="lines">
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
46
|
|
942
|
+
47
|
|
943
|
+
48</pre>
|
|
944
|
+
</td>
|
|
945
|
+
<td>
|
|
946
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 46</span>
|
|
947
|
+
|
|
948
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_second'>second</span>
|
|
949
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.second</span><span class='tstring_end'>"</span></span>
|
|
950
|
+
<span class='kw'>end</span></pre>
|
|
951
|
+
</td>
|
|
952
|
+
</tr>
|
|
953
|
+
</table>
|
|
954
|
+
</div>
|
|
955
|
+
|
|
956
|
+
<div class="method_details ">
|
|
957
|
+
<h3 class="signature " id="sunday-instance_method">
|
|
958
|
+
|
|
959
|
+
- (<tt>Object</tt>) <strong>sunday</strong>
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
|
|
965
|
+
</h3><div class="docstring">
|
|
966
|
+
<div class="discussion">
|
|
967
|
+
<hr>
|
|
968
|
+
<hr>
|
|
969
|
+
|
|
970
|
+
|
|
971
|
+
</div>
|
|
972
|
+
</div>
|
|
973
|
+
<div class="tags">
|
|
974
|
+
|
|
975
|
+
|
|
976
|
+
</div><table class="source_code">
|
|
977
|
+
<tr>
|
|
978
|
+
<td>
|
|
979
|
+
<pre class="lines">
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
86
|
|
983
|
+
87
|
|
984
|
+
88</pre>
|
|
985
|
+
</td>
|
|
986
|
+
<td>
|
|
987
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 86</span>
|
|
988
|
+
|
|
989
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_sunday'>sunday</span>
|
|
990
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.sunday</span><span class='tstring_end'>"</span></span>
|
|
991
|
+
<span class='kw'>end</span></pre>
|
|
992
|
+
</td>
|
|
993
|
+
</tr>
|
|
994
|
+
</table>
|
|
995
|
+
</div>
|
|
996
|
+
|
|
997
|
+
<div class="method_details ">
|
|
998
|
+
<h3 class="signature " id="thursday-instance_method">
|
|
999
|
+
|
|
1000
|
+
- (<tt>Object</tt>) <strong>thursday</strong>
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
</h3><div class="docstring">
|
|
1007
|
+
<div class="discussion">
|
|
1008
|
+
<hr>
|
|
1009
|
+
<hr>
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
</div>
|
|
1013
|
+
</div>
|
|
1014
|
+
<div class="tags">
|
|
1015
|
+
|
|
1016
|
+
|
|
1017
|
+
</div><table class="source_code">
|
|
1018
|
+
<tr>
|
|
1019
|
+
<td>
|
|
1020
|
+
<pre class="lines">
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
118
|
|
1024
|
+
119
|
|
1025
|
+
120</pre>
|
|
1026
|
+
</td>
|
|
1027
|
+
<td>
|
|
1028
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 118</span>
|
|
1029
|
+
|
|
1030
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_thursday'>thursday</span>
|
|
1031
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.thursday</span><span class='tstring_end'>"</span></span>
|
|
1032
|
+
<span class='kw'>end</span></pre>
|
|
1033
|
+
</td>
|
|
1034
|
+
</tr>
|
|
1035
|
+
</table>
|
|
1036
|
+
</div>
|
|
1037
|
+
|
|
1038
|
+
<div class="method_details ">
|
|
1039
|
+
<h3 class="signature " id="tuesday-instance_method">
|
|
1040
|
+
|
|
1041
|
+
- (<tt>Object</tt>) <strong>tuesday</strong>
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+
</h3><div class="docstring">
|
|
1048
|
+
<div class="discussion">
|
|
1049
|
+
<hr>
|
|
1050
|
+
<hr>
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
|
+
</div>
|
|
1054
|
+
</div>
|
|
1055
|
+
<div class="tags">
|
|
1056
|
+
|
|
1057
|
+
|
|
1058
|
+
</div><table class="source_code">
|
|
1059
|
+
<tr>
|
|
1060
|
+
<td>
|
|
1061
|
+
<pre class="lines">
|
|
1062
|
+
|
|
1063
|
+
|
|
1064
|
+
102
|
|
1065
|
+
103
|
|
1066
|
+
104</pre>
|
|
1067
|
+
</td>
|
|
1068
|
+
<td>
|
|
1069
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 102</span>
|
|
1070
|
+
|
|
1071
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_tuesday'>tuesday</span>
|
|
1072
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.tuesday</span><span class='tstring_end'>"</span></span>
|
|
1073
|
+
<span class='kw'>end</span></pre>
|
|
1074
|
+
</td>
|
|
1075
|
+
</tr>
|
|
1076
|
+
</table>
|
|
1077
|
+
</div>
|
|
1078
|
+
|
|
1079
|
+
<div class="method_details ">
|
|
1080
|
+
<h3 class="signature " id="wednesday-instance_method">
|
|
1081
|
+
|
|
1082
|
+
- (<tt>Object</tt>) <strong>wednesday</strong>
|
|
1083
|
+
|
|
1084
|
+
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
|
|
1088
|
+
</h3><div class="docstring">
|
|
1089
|
+
<div class="discussion">
|
|
1090
|
+
<hr>
|
|
1091
|
+
<hr>
|
|
1092
|
+
|
|
1093
|
+
|
|
1094
|
+
</div>
|
|
1095
|
+
</div>
|
|
1096
|
+
<div class="tags">
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
</div><table class="source_code">
|
|
1100
|
+
<tr>
|
|
1101
|
+
<td>
|
|
1102
|
+
<pre class="lines">
|
|
1103
|
+
|
|
1104
|
+
|
|
1105
|
+
110
|
|
1106
|
+
111
|
|
1107
|
+
112</pre>
|
|
1108
|
+
</td>
|
|
1109
|
+
<td>
|
|
1110
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 110</span>
|
|
1111
|
+
|
|
1112
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_wednesday'>wednesday</span>
|
|
1113
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.wednesday</span><span class='tstring_end'>"</span></span>
|
|
1114
|
+
<span class='kw'>end</span></pre>
|
|
1115
|
+
</td>
|
|
1116
|
+
</tr>
|
|
1117
|
+
</table>
|
|
1118
|
+
</div>
|
|
1119
|
+
|
|
1120
|
+
<div class="method_details ">
|
|
1121
|
+
<h3 class="signature " id="week-instance_method">
|
|
1122
|
+
|
|
1123
|
+
- (<tt>Object</tt>) <strong>week</strong>
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
|
|
1129
|
+
</h3><div class="docstring">
|
|
1130
|
+
<div class="discussion">
|
|
1131
|
+
<hr>
|
|
1132
|
+
<hr>
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
</div>
|
|
1136
|
+
</div>
|
|
1137
|
+
<div class="tags">
|
|
1138
|
+
|
|
1139
|
+
|
|
1140
|
+
</div><table class="source_code">
|
|
1141
|
+
<tr>
|
|
1142
|
+
<td>
|
|
1143
|
+
<pre class="lines">
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
78
|
|
1147
|
+
79
|
|
1148
|
+
80</pre>
|
|
1149
|
+
</td>
|
|
1150
|
+
<td>
|
|
1151
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 78</span>
|
|
1152
|
+
|
|
1153
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_week'>week</span>
|
|
1154
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.week</span><span class='tstring_end'>"</span></span>
|
|
1155
|
+
<span class='kw'>end</span></pre>
|
|
1156
|
+
</td>
|
|
1157
|
+
</tr>
|
|
1158
|
+
</table>
|
|
1159
|
+
</div>
|
|
1160
|
+
|
|
1161
|
+
<div class="method_details ">
|
|
1162
|
+
<h3 class="signature " id="year-instance_method">
|
|
1163
|
+
|
|
1164
|
+
- (<tt>Object</tt>) <strong>year</strong>
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
</h3><div class="docstring">
|
|
1171
|
+
<div class="discussion">
|
|
1172
|
+
<hr>
|
|
1173
|
+
<hr>
|
|
1174
|
+
|
|
1175
|
+
|
|
1176
|
+
</div>
|
|
1177
|
+
</div>
|
|
1178
|
+
<div class="tags">
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
</div><table class="source_code">
|
|
1182
|
+
<tr>
|
|
1183
|
+
<td>
|
|
1184
|
+
<pre class="lines">
|
|
1185
|
+
|
|
1186
|
+
|
|
1187
|
+
150
|
|
1188
|
+
151
|
|
1189
|
+
152</pre>
|
|
1190
|
+
</td>
|
|
1191
|
+
<td>
|
|
1192
|
+
<pre class="code"><span class="info file"># File 'lib/webview/interval.rb', line 150</span>
|
|
1193
|
+
|
|
1194
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_year'>year</span>
|
|
1195
|
+
<span class='ivar'>@spec</span> <span class='op'><<</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>.year</span><span class='tstring_end'>"</span></span>
|
|
1196
|
+
<span class='kw'>end</span></pre>
|
|
1197
|
+
</td>
|
|
1198
|
+
</tr>
|
|
1199
|
+
</table>
|
|
1200
|
+
</div>
|
|
1201
|
+
|
|
1202
|
+
</div>
|
|
1203
|
+
|
|
1204
|
+
</div>
|
|
1205
|
+
|
|
1206
|
+
<div id="footer">
|
|
1207
|
+
Generated on Tue Jul 14 18:09:14 2015 by
|
|
1208
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1209
|
+
0.8.7.6 (ruby-1.9.3).
|
|
1210
|
+
</div>
|
|
1211
|
+
|
|
1212
|
+
</body>
|
|
1213
|
+
</html>
|