ae_easy-core 0.0.5 → 0.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/.gitignore +1 -0
- data/doc/AeEasy/Core/Config.html +5 -5
- data/doc/AeEasy/Core/Exception/OutdatedError.html +1 -1
- data/doc/AeEasy/Core/Exception.html +1 -1
- data/doc/AeEasy/Core/Helper/Cookie.html +1 -1
- data/doc/AeEasy/Core/Helper.html +1 -1
- data/doc/AeEasy/Core/Mock/FakeDb.html +2 -2
- data/doc/AeEasy/Core/Mock/FakeExecutor.html +8 -8
- data/doc/AeEasy/Core/Mock/FakeParser.html +1 -1
- data/doc/AeEasy/Core/Mock/FakeSeeder.html +1 -1
- data/doc/AeEasy/Core/Mock.html +1 -1
- data/doc/AeEasy/Core/Plugin/CollectionVault.html +1 -1
- data/doc/AeEasy/Core/Plugin/ConfigBehavior.html +1 -1
- data/doc/AeEasy/Core/Plugin/ContextIntegrator.html +2 -2
- data/doc/AeEasy/Core/Plugin/Executor.html +259 -0
- data/doc/AeEasy/Core/Plugin/ExecutorBehavior.html +344 -0
- data/doc/AeEasy/Core/Plugin/InitializeHook.html +2 -2
- data/doc/AeEasy/Core/Plugin/Parser.html +13 -2
- data/doc/AeEasy/Core/Plugin/ParserBehavior.html +12 -197
- data/doc/AeEasy/Core/Plugin/Seeder.html +9 -3
- data/doc/AeEasy/Core/Plugin/SeederBehavior.html +5 -145
- data/doc/AeEasy/Core/Plugin.html +3 -3
- data/doc/AeEasy/Core/SmartCollection.html +4 -4
- data/doc/AeEasy/Core.html +68 -58
- data/doc/AeEasy.html +2 -2
- data/doc/_index.html +15 -1
- data/doc/class_list.html +1 -1
- data/doc/file.README.html +1 -1
- data/doc/index.html +1 -1
- data/doc/method_list.html +56 -64
- data/doc/top-level-namespace.html +1 -1
- data/lib/ae_easy/core/config.rb +2 -0
- data/lib/ae_easy/core/mock/fake_db.rb +2 -2
- data/lib/ae_easy/core/mock/fake_executor.rb +5 -5
- data/lib/ae_easy/core/plugin/executor.rb +19 -0
- data/lib/ae_easy/core/plugin/executor_behavior.rb +32 -0
- data/lib/ae_easy/core/plugin/parser_behavior.rb +1 -23
- data/lib/ae_easy/core/plugin/seeder_behavior.rb +1 -13
- data/lib/ae_easy/core/plugin.rb +2 -0
- data/lib/ae_easy/core/smart_collection.rb +1 -1
- data/lib/ae_easy/core/version.rb +1 -1
- data/lib/ae_easy/core.rb +13 -8
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32eb45501ec063d9c5a6cf0896b6394276086478bfe8a04deb44281dac122d79
|
4
|
+
data.tar.gz: 67ba156e1f2f7f0060f306d00b82313c7beb95ac5ed474a27cc36512c604b74a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7963ae3bc13ade8614442fd859b98ee5d24c49e04f5d64d641dd2ca4b8a11bd755b76af062f1fec5f1537900f3f3b56753988489b98b69497e4d17a853d36732
|
7
|
+
data.tar.gz: 05f8bd10331e861433129dbbe99bd49ec4670f71febd09e8b13143fbbb561c47decf9bbf171b153d34b4b9856a666432e61e21a332d753846c3b35bdb6706b07
|
data/.gitignore
CHANGED
data/doc/AeEasy/Core/Config.html
CHANGED
@@ -274,15 +274,15 @@
|
|
274
274
|
<pre class="lines">
|
275
275
|
|
276
276
|
|
277
|
-
17
|
278
|
-
18
|
279
277
|
19
|
280
278
|
20
|
281
279
|
21
|
282
|
-
22
|
280
|
+
22
|
281
|
+
23
|
282
|
+
24</pre>
|
283
283
|
</td>
|
284
284
|
<td>
|
285
|
-
<pre class="code"><span class="info file"># File 'lib/ae_easy/core/config.rb', line
|
285
|
+
<pre class="code"><span class="info file"># File 'lib/ae_easy/core/config.rb', line 19</span>
|
286
286
|
|
287
287
|
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span> <span class='id identifier rubyid_opts'>opts</span> <span class='op'>=</span> <span class='lbrace'>{</span><span class='rbrace'>}</span>
|
288
288
|
<span class='id identifier rubyid_opts'>opts</span> <span class='op'>=</span> <span class='id identifier rubyid_opts'>opts</span><span class='period'>.</span><span class='id identifier rubyid_merge'>merge</span><span class='lparen'>(</span>
|
@@ -301,7 +301,7 @@
|
|
301
301
|
</div>
|
302
302
|
|
303
303
|
<div id="footer">
|
304
|
-
Generated on
|
304
|
+
Generated on Tue Feb 26 16:38:46 2019 by
|
305
305
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
306
306
|
0.9.18 (ruby-2.5.3).
|
307
307
|
</div>
|
@@ -125,7 +125,7 @@
|
|
125
125
|
</div>
|
126
126
|
|
127
127
|
<div id="footer">
|
128
|
-
Generated on
|
128
|
+
Generated on Tue Feb 26 16:38:47 2019 by
|
129
129
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
130
130
|
0.9.18 (ruby-2.5.3).
|
131
131
|
</div>
|
@@ -107,7 +107,7 @@
|
|
107
107
|
</div>
|
108
108
|
|
109
109
|
<div id="footer">
|
110
|
-
Generated on
|
110
|
+
Generated on Tue Feb 26 16:38:45 2019 by
|
111
111
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
112
112
|
0.9.18 (ruby-2.5.3).
|
113
113
|
</div>
|
@@ -1060,7 +1060,7 @@ update_as_hash , response_cookies
|
|
1060
1060
|
</div>
|
1061
1061
|
|
1062
1062
|
<div id="footer">
|
1063
|
-
Generated on
|
1063
|
+
Generated on Tue Feb 26 16:38:47 2019 by
|
1064
1064
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1065
1065
|
0.9.18 (ruby-2.5.3).
|
1066
1066
|
</div>
|
data/doc/AeEasy/Core/Helper.html
CHANGED
@@ -107,7 +107,7 @@
|
|
107
107
|
</div>
|
108
108
|
|
109
109
|
<div id="footer">
|
110
|
-
Generated on
|
110
|
+
Generated on Tue Feb 26 16:38:45 2019 by
|
111
111
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
112
112
|
0.9.18 (ruby-2.5.3).
|
113
113
|
</div>
|
@@ -3046,7 +3046,7 @@ suites only.</p>
|
|
3046
3046
|
<span class='name'>limit</span>
|
3047
3047
|
|
3048
3048
|
|
3049
|
-
<span class='type'>(<tt>Integer
|
3049
|
+
<span class='type'>(<tt>Integer</tt>, <tt>nil</tt>)</span>
|
3050
3050
|
|
3051
3051
|
|
3052
3052
|
<em class="default">(defaults to: <tt>nil</tt>)</em>
|
@@ -3259,7 +3259,7 @@ suites only.</p>
|
|
3259
3259
|
</div>
|
3260
3260
|
|
3261
3261
|
<div id="footer">
|
3262
|
-
Generated on
|
3262
|
+
Generated on Tue Feb 26 16:38:47 2019 by
|
3263
3263
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
3264
3264
|
0.9.18 (ruby-2.5.3).
|
3265
3265
|
</div>
|
@@ -448,7 +448,7 @@
|
|
448
448
|
<li class="public ">
|
449
449
|
<span class="summary_signature">
|
450
450
|
|
451
|
-
<a href="#latest_job_by-instance_method" title="#latest_job_by (instance method)">#<strong>latest_job_by</strong>(scraper_name, filter = {}) ⇒ Hash
|
451
|
+
<a href="#latest_job_by-instance_method" title="#latest_job_by (instance method)">#<strong>latest_job_by</strong>(scraper_name, filter = {}) ⇒ Hash<sup>?</sup> </a>
|
452
452
|
|
453
453
|
|
454
454
|
|
@@ -1118,7 +1118,7 @@ instead, this is the defaul behavior.</p>
|
|
1118
1118
|
|
1119
1119
|
<li>
|
1120
1120
|
<span class="name">:scraper_name</span>
|
1121
|
-
<span class="type">(<tt>String
|
1121
|
+
<span class="type">(<tt>String</tt>, <tt>nil</tt>)</span>
|
1122
1122
|
<span class="default">
|
1123
1123
|
|
1124
1124
|
— default:
|
@@ -1134,7 +1134,7 @@ instead, this is the defaul behavior.</p>
|
|
1134
1134
|
|
1135
1135
|
<li>
|
1136
1136
|
<span class="name">:job_id</span>
|
1137
|
-
<span class="type">(<tt>Integer
|
1137
|
+
<span class="type">(<tt>Integer</tt>, <tt>nil</tt>)</span>
|
1138
1138
|
<span class="default">
|
1139
1139
|
|
1140
1140
|
— default:
|
@@ -1393,7 +1393,7 @@ instead, this is the defaul behavior.</p>
|
|
1393
1393
|
|
1394
1394
|
<li>
|
1395
1395
|
<span class="name">:scraper_name</span>
|
1396
|
-
<span class="type">(<tt>String
|
1396
|
+
<span class="type">(<tt>String</tt>, <tt>nil</tt>)</span>
|
1397
1397
|
<span class="default">
|
1398
1398
|
|
1399
1399
|
— default:
|
@@ -1409,7 +1409,7 @@ instead, this is the defaul behavior.</p>
|
|
1409
1409
|
|
1410
1410
|
<li>
|
1411
1411
|
<span class="name">:job_id</span>
|
1412
|
-
<span class="type">(<tt>Integer
|
1412
|
+
<span class="type">(<tt>Integer</tt>, <tt>nil</tt>)</span>
|
1413
1413
|
<span class="default">
|
1414
1414
|
|
1415
1415
|
— default:
|
@@ -1956,7 +1956,7 @@ instead, this is the defaul behavior.</p>
|
|
1956
1956
|
<div class="method_details ">
|
1957
1957
|
<h3 class="signature " id="latest_job_by-instance_method">
|
1958
1958
|
|
1959
|
-
#<strong>latest_job_by</strong>(scraper_name, filter = {}) ⇒ <tt>Hash
|
1959
|
+
#<strong>latest_job_by</strong>(scraper_name, filter = {}) ⇒ <tt>Hash</tt><sup>?</sup>
|
1960
1960
|
|
1961
1961
|
|
1962
1962
|
|
@@ -2016,7 +2016,7 @@ instead, this is the defaul behavior.</p>
|
|
2016
2016
|
<li>
|
2017
2017
|
|
2018
2018
|
|
2019
|
-
<span class='type'>(<tt>Hash
|
2019
|
+
<span class='type'>(<tt>Hash</tt>, <tt>nil</tt>)</span>
|
2020
2020
|
|
2021
2021
|
|
2022
2022
|
|
@@ -2686,7 +2686,7 @@ instead, this is the defaul behavior.</p>
|
|
2686
2686
|
</div>
|
2687
2687
|
|
2688
2688
|
<div id="footer">
|
2689
|
-
Generated on
|
2689
|
+
Generated on Tue Feb 26 16:38:46 2019 by
|
2690
2690
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
2691
2691
|
0.9.18 (ruby-2.5.3).
|
2692
2692
|
</div>
|
@@ -150,7 +150,7 @@
|
|
150
150
|
</div>
|
151
151
|
|
152
152
|
<div id="footer">
|
153
|
-
Generated on
|
153
|
+
Generated on Tue Feb 26 16:38:47 2019 by
|
154
154
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
155
155
|
0.9.18 (ruby-2.5.3).
|
156
156
|
</div>
|
@@ -150,7 +150,7 @@
|
|
150
150
|
</div>
|
151
151
|
|
152
152
|
<div id="footer">
|
153
|
-
Generated on
|
153
|
+
Generated on Tue Feb 26 16:38:47 2019 by
|
154
154
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
155
155
|
0.9.18 (ruby-2.5.3).
|
156
156
|
</div>
|
data/doc/AeEasy/Core/Mock.html
CHANGED
@@ -272,7 +272,7 @@
|
|
272
272
|
</div>
|
273
273
|
|
274
274
|
<div id="footer">
|
275
|
-
Generated on
|
275
|
+
Generated on Tue Feb 26 16:38:45 2019 by
|
276
276
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
277
277
|
0.9.18 (ruby-2.5.3).
|
278
278
|
</div>
|
@@ -289,7 +289,7 @@
|
|
289
289
|
</div>
|
290
290
|
|
291
291
|
<div id="footer">
|
292
|
-
Generated on
|
292
|
+
Generated on Tue Feb 26 16:38:46 2019 by
|
293
293
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
294
294
|
0.9.18 (ruby-2.5.3).
|
295
295
|
</div>
|
@@ -531,7 +531,7 @@
|
|
531
531
|
</div>
|
532
532
|
|
533
533
|
<div id="footer">
|
534
|
-
Generated on
|
534
|
+
Generated on Tue Feb 26 16:38:46 2019 by
|
535
535
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
536
536
|
0.9.18 (ruby-2.5.3).
|
537
537
|
</div>
|
@@ -76,7 +76,7 @@
|
|
76
76
|
|
77
77
|
<dl>
|
78
78
|
<dt>Included in:</dt>
|
79
|
-
<dd><span class='object_link'><a href="ConfigBehavior.html" title="AeEasy::Core::Plugin::ConfigBehavior (module)">ConfigBehavior</a></span>, <span class='object_link'><a href="
|
79
|
+
<dd><span class='object_link'><a href="ConfigBehavior.html" title="AeEasy::Core::Plugin::ConfigBehavior (module)">ConfigBehavior</a></span>, <span class='object_link'><a href="ExecutorBehavior.html" title="AeEasy::Core::Plugin::ExecutorBehavior (module)">ExecutorBehavior</a></span></dd>
|
80
80
|
</dl>
|
81
81
|
|
82
82
|
|
@@ -435,7 +435,7 @@
|
|
435
435
|
</div>
|
436
436
|
|
437
437
|
<div id="footer">
|
438
|
-
Generated on
|
438
|
+
Generated on Tue Feb 26 16:38:46 2019 by
|
439
439
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
440
440
|
0.9.18 (ruby-2.5.3).
|
441
441
|
</div>
|
@@ -0,0 +1,259 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<title>
|
7
|
+
Module: AeEasy::Core::Plugin::Executor
|
8
|
+
|
9
|
+
— Documentation by YARD 0.9.18
|
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
|
+
pathId = "AeEasy::Core::Plugin::Executor";
|
19
|
+
relpath = '../../../';
|
20
|
+
</script>
|
21
|
+
|
22
|
+
|
23
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/jquery.js"></script>
|
24
|
+
|
25
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/app.js"></script>
|
26
|
+
|
27
|
+
|
28
|
+
</head>
|
29
|
+
<body>
|
30
|
+
<div class="nav_wrap">
|
31
|
+
<iframe id="nav" src="../../../class_list.html?1"></iframe>
|
32
|
+
<div id="resizer"></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="main" tabindex="-1">
|
36
|
+
<div id="header">
|
37
|
+
<div id="menu">
|
38
|
+
|
39
|
+
<a href="../../../_index.html">Index (E)</a> »
|
40
|
+
<span class='title'><span class='object_link'><a href="../../../AeEasy.html" title="AeEasy (module)">AeEasy</a></span></span> » <span class='title'><span class='object_link'><a href="../../Core.html" title="AeEasy::Core (module)">Core</a></span></span> » <span class='title'><span class='object_link'><a href="../Plugin.html" title="AeEasy::Core::Plugin (module)">Plugin</a></span></span>
|
41
|
+
»
|
42
|
+
<span class="title">Executor</span>
|
43
|
+
|
44
|
+
</div>
|
45
|
+
|
46
|
+
<div id="search">
|
47
|
+
|
48
|
+
<a class="full_list_link" id="class_list_link"
|
49
|
+
href="../../../class_list.html">
|
50
|
+
|
51
|
+
<svg width="24" height="24">
|
52
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
53
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
54
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
55
|
+
</svg>
|
56
|
+
</a>
|
57
|
+
|
58
|
+
</div>
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<div id="content"><h1>Module: AeEasy::Core::Plugin::Executor
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
</h1>
|
67
|
+
<div class="box_info">
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
<dl>
|
75
|
+
<dt>Includes:</dt>
|
76
|
+
<dd><span class='object_link'><a href="ExecutorBehavior.html" title="AeEasy::Core::Plugin::ExecutorBehavior (module)">ExecutorBehavior</a></span>, <span class='object_link'><a href="InitializeHook.html" title="AeEasy::Core::Plugin::InitializeHook (module)">InitializeHook</a></span></dd>
|
77
|
+
</dl>
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
<dl>
|
85
|
+
<dt>Defined in:</dt>
|
86
|
+
<dd>lib/ae_easy/core/plugin/executor.rb</dd>
|
87
|
+
</dl>
|
88
|
+
|
89
|
+
</div>
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
<h2>Instance Attribute Summary</h2>
|
98
|
+
|
99
|
+
<h3 class="inherited">Attributes included from <span class='object_link'><a href="ContextIntegrator.html" title="AeEasy::Core::Plugin::ContextIntegrator (module)">ContextIntegrator</a></span></h3>
|
100
|
+
<p class="inherited"><span class='object_link'><a href="ContextIntegrator.html#context-instance_method" title="AeEasy::Core::Plugin::ContextIntegrator#context (method)">#context</a></span></p>
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
<h2>
|
105
|
+
Instance Method Summary
|
106
|
+
<small><a href="#" class="summary_toggle">collapse</a></small>
|
107
|
+
</h2>
|
108
|
+
|
109
|
+
<ul class="summary">
|
110
|
+
|
111
|
+
<li class="public ">
|
112
|
+
<span class="summary_signature">
|
113
|
+
|
114
|
+
<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(opts = {}) ⇒ Object </a>
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
</span>
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
<span class="summary_desc"><div class='inline'>
|
129
|
+
<p>Initialize hooks.</p>
|
130
|
+
</div></span>
|
131
|
+
|
132
|
+
</li>
|
133
|
+
|
134
|
+
|
135
|
+
</ul>
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="ExecutorBehavior.html" title="AeEasy::Core::Plugin::ExecutorBehavior (module)">ExecutorBehavior</a></span></h3>
|
148
|
+
<p class="inherited"><span class='object_link'><a href="ExecutorBehavior.html#enqueue-instance_method" title="AeEasy::Core::Plugin::ExecutorBehavior#enqueue (method)">#enqueue</a></span>, <span class='object_link'><a href="ExecutorBehavior.html#save-instance_method" title="AeEasy::Core::Plugin::ExecutorBehavior#save (method)">#save</a></span></p>
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
|
158
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="ContextIntegrator.html" title="AeEasy::Core::Plugin::ContextIntegrator (module)">ContextIntegrator</a></span></h3>
|
159
|
+
<p class="inherited"><span class='object_link'><a href="ContextIntegrator.html#initialize_hook_core_context_integrator-instance_method" title="AeEasy::Core::Plugin::ContextIntegrator#initialize_hook_core_context_integrator (method)">#initialize_hook_core_context_integrator</a></span>, <span class='object_link'><a href="ContextIntegrator.html#mock_context-instance_method" title="AeEasy::Core::Plugin::ContextIntegrator#mock_context (method)">#mock_context</a></span></p>
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="InitializeHook.html" title="AeEasy::Core::Plugin::InitializeHook (module)">InitializeHook</a></span></h3>
|
170
|
+
<p class="inherited"><span class='object_link'><a href="InitializeHook.html#initialize_hooks-instance_method" title="AeEasy::Core::Plugin::InitializeHook#initialize_hooks (method)">#initialize_hooks</a></span></p>
|
171
|
+
|
172
|
+
|
173
|
+
<div id="instance_method_details" class="method_details_list">
|
174
|
+
<h2>Instance Method Details</h2>
|
175
|
+
|
176
|
+
|
177
|
+
<div class="method_details first">
|
178
|
+
<h3 class="signature first" id="initialize-instance_method">
|
179
|
+
|
180
|
+
#<strong>initialize</strong>(opts = {}) ⇒ <tt>Object</tt>
|
181
|
+
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
|
186
|
+
</h3><div class="docstring">
|
187
|
+
<div class="discussion">
|
188
|
+
|
189
|
+
<p>Initialize hooks.</p>
|
190
|
+
|
191
|
+
|
192
|
+
</div>
|
193
|
+
</div>
|
194
|
+
<div class="tags">
|
195
|
+
<p class="tag_title">Parameters:</p>
|
196
|
+
<ul class="param">
|
197
|
+
|
198
|
+
<li>
|
199
|
+
|
200
|
+
<span class='name'>opts</span>
|
201
|
+
|
202
|
+
|
203
|
+
<span class='type'>(<tt>Hash</tt>)</span>
|
204
|
+
|
205
|
+
|
206
|
+
<em class="default">(defaults to: <tt>{}</tt>)</em>
|
207
|
+
|
208
|
+
|
209
|
+
—
|
210
|
+
<div class='inline'>
|
211
|
+
<p>({}) Configuration options.</p>
|
212
|
+
</div>
|
213
|
+
|
214
|
+
</li>
|
215
|
+
|
216
|
+
</ul>
|
217
|
+
|
218
|
+
|
219
|
+
<p class="tag_title">See Also:</p>
|
220
|
+
<ul class="see">
|
221
|
+
|
222
|
+
<li><span class='object_link'><a href="ContextIntegrator.html#initialize_hook_core_context_integrator-instance_method" title="AeEasy::Core::Plugin::ContextIntegrator#initialize_hook_core_context_integrator (method)">ContextIntegrator#initialize_hook_core_context_integrator</a></span></li>
|
223
|
+
|
224
|
+
</ul>
|
225
|
+
|
226
|
+
</div><table class="source_code">
|
227
|
+
<tr>
|
228
|
+
<td>
|
229
|
+
<pre class="lines">
|
230
|
+
|
231
|
+
|
232
|
+
13
|
233
|
+
14
|
234
|
+
15</pre>
|
235
|
+
</td>
|
236
|
+
<td>
|
237
|
+
<pre class="code"><span class="info file"># File 'lib/ae_easy/core/plugin/executor.rb', line 13</span>
|
238
|
+
|
239
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span> <span class='id identifier rubyid_opts'>opts</span> <span class='op'>=</span> <span class='lbrace'>{</span><span class='rbrace'>}</span>
|
240
|
+
<span class='id identifier rubyid_initialize_hooks'>initialize_hooks</span> <span class='id identifier rubyid_opts'>opts</span>
|
241
|
+
<span class='kw'>end</span></pre>
|
242
|
+
</td>
|
243
|
+
</tr>
|
244
|
+
</table>
|
245
|
+
</div>
|
246
|
+
|
247
|
+
</div>
|
248
|
+
|
249
|
+
</div>
|
250
|
+
|
251
|
+
<div id="footer">
|
252
|
+
Generated on Tue Feb 26 16:38:46 2019 by
|
253
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
254
|
+
0.9.18 (ruby-2.5.3).
|
255
|
+
</div>
|
256
|
+
|
257
|
+
</div>
|
258
|
+
</body>
|
259
|
+
</html>
|