ae_easy-test 0.0.3 → 0.0.4
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/CODE_OF_CONDUCT.md +1 -1
- data/Gemfile +1 -1
- data/README.md +8 -4
- data/Rakefile +0 -10
- data/ae_easy-test.gemspec +6 -9
- data/lib/ae_easy/test.rb +3 -50
- metadata +23 -81
- data/doc/AeEasy.html +0 -117
- data/doc/AeEasy/Core.html +0 -117
- data/doc/AeEasy/Core/Mock.html +0 -115
- data/doc/AeEasy/Core/Mock/FakeExecutor.html +0 -2114
- data/doc/AeEasy/Core/Modk.html +0 -105
- data/doc/AeEasy/Core/Plugin.html +0 -117
- data/doc/AeEasy/Core/Plugin/ExecutorBehavior.html +0 -196
- data/doc/AeEasy/Test.html +0 -616
- data/doc/AeEasy/Test/Helper.html +0 -1710
- data/doc/AeEasy/Test/RecordTask.html +0 -2493
- data/doc/_index.html +0 -239
- data/doc/class_list.html +0 -51
- data/doc/css/common.css +0 -1
- data/doc/css/full_list.css +0 -58
- data/doc/css/style.css +0 -496
- data/doc/file.README.html +0 -91
- data/doc/file_list.html +0 -56
- data/doc/frames.html +0 -17
- data/doc/index.html +0 -91
- data/doc/js/app.js +0 -303
- data/doc/js/full_list.js +0 -216
- data/doc/js/jquery.js +0 -4
- data/doc/method_list.html +0 -435
- data/doc/top-level-namespace.html +0 -191
- data/lib/ae_easy/test/helper.rb +0 -225
- data/lib/ae_easy/test/rake.rb +0 -335
- data/lib/ae_easy/test/version.rb +0 -6
- data/lib/ae_easy_override/core.rb +0 -7
- data/lib/ae_easy_override/core/mock.rb +0 -8
- data/lib/ae_easy_override/core/mock/fake_executor.rb +0 -338
- data/lib/ae_easy_override/core/plugin.rb +0 -8
- data/lib/ae_easy_override/core/plugin/executor_behavior.rb +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 849214b9819ace59a69299ceb2f0e3f1dae3a009ce3404028b0742d5ed9c2f68
|
4
|
+
data.tar.gz: ec712523c878c56af0988a04de060950c6017e1fc723967644727521537171d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 395b6b7c45d7eaf1f1ae1fef5fbb6c1fbf91ec91a033b01b002531b95488433b00bf3eb2da5a7d2c3481caf7a162f74a6ce40fe26bcbddd0f4da2dc921e2e043
|
7
|
+
data.tar.gz: 7f36f67849b917cf90901051b595ec2efb7f805877b33734287d4a02ee3b1601ba71b6d73c05f44b947925e43ebdd648e7edb553f718dad63fab002ed3b8e5b4
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
|
55
55
|
## Enforcement
|
56
56
|
|
57
57
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
-
reported by contacting the project team at
|
58
|
+
reported by contacting the project team at perry@datahen.com. All
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
61
61
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -5,12 +5,16 @@
|
|
5
5
|
# AeEasy test module
|
6
6
|
## Description
|
7
7
|
|
8
|
-
AeEasy test is part of AeEasy gem collection. It provides testing tools for TDD (Test Driven Development) over
|
8
|
+
AeEasy test is part of AeEasy gem collection and an alias to [dh_easy-test](https://github.com/DataHenOfficial/dh_easy-test/) gem. It provides testing tools for TDD (Test Driven Development) over DataHen apps.
|
9
9
|
|
10
10
|
Install gem:
|
11
|
-
```
|
11
|
+
```ruby
|
12
|
+
gem install 'ae_easy-test'
|
13
|
+
```
|
12
14
|
|
13
15
|
Require gem:
|
14
|
-
```
|
16
|
+
```ruby
|
17
|
+
require 'ae_easy/test'
|
18
|
+
```
|
15
19
|
|
16
|
-
|
20
|
+
See [dh_easy-test](https://github.com/DataHenOfficial/dh_easy-test/) gem for documentation.
|
data/Rakefile
CHANGED
@@ -9,14 +9,4 @@ Rake::TestTask.new do |t|
|
|
9
9
|
t.test_files = FileList['./test/**/*_test.rb']
|
10
10
|
end
|
11
11
|
|
12
|
-
desc 'Benchmark another task execution | usage example: benchmark[my_task, param1, param2]'
|
13
|
-
task :benchmark, [:task] do |task, args|
|
14
|
-
task_name = args[:task]
|
15
|
-
if task_name.nil?
|
16
|
-
puts "Should select a task."
|
17
|
-
exit 1
|
18
|
-
end
|
19
|
-
puts Benchmark.measure{ Rake::Task[task_name].invoke *args.extras }
|
20
|
-
end
|
21
|
-
|
22
12
|
task default: :test
|
data/ae_easy-test.gemspec
CHANGED
@@ -1,17 +1,16 @@
|
|
1
1
|
|
2
2
|
lib = File.expand_path("../lib", __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require "ae_easy/test/version"
|
5
4
|
|
6
5
|
Gem::Specification.new do |spec|
|
7
6
|
spec.name = "ae_easy-test"
|
8
|
-
spec.version =
|
7
|
+
spec.version = "0.0.4"
|
9
8
|
spec.authors = ["Eduardo Rosales"]
|
10
9
|
spec.email = ["eduardo@datahen.com"]
|
11
10
|
|
12
|
-
spec.summary = %q{
|
13
|
-
spec.description = %q{
|
14
|
-
spec.homepage = "https://
|
11
|
+
spec.summary = %q{(Deprecated: Use dh_easy_test gem instead.) Compatibility alias for DataHen Easy toolkit test module}
|
12
|
+
spec.description = %q{(Deprecated: Use dh_easy_test gem instead.) Compatibility alias for DataHen Easy toolkit test module to support other complex modules.}
|
13
|
+
spec.homepage = "https://datahen.com"
|
15
14
|
spec.license = "MIT"
|
16
15
|
|
17
16
|
# spec.cert_chain = ['certs/ae_easy.pem']
|
@@ -38,12 +37,10 @@ Gem::Specification.new do |spec|
|
|
38
37
|
spec.require_paths = ["lib"]
|
39
38
|
spec.required_ruby_version = '>= 2.2.2'
|
40
39
|
|
41
|
-
spec.add_dependency '
|
40
|
+
spec.add_dependency 'dh_easy-test', '~> 0'
|
41
|
+
spec.add_dependency 'ae_easy-core', '>= 0.2.1'
|
42
42
|
spec.add_development_dependency 'bundler', '>= 1'
|
43
43
|
spec.add_development_dependency 'rake', '~> 10'
|
44
44
|
spec.add_development_dependency 'minitest', '~> 5'
|
45
|
-
spec.add_development_dependency 'simplecov', '~> 0'
|
46
|
-
spec.add_development_dependency 'simplecov-console', '~> 0'
|
47
|
-
spec.add_development_dependency 'timecop', '~> 0'
|
48
45
|
spec.add_development_dependency 'byebug', '>= 0'
|
49
46
|
end
|
data/lib/ae_easy/test.rb
CHANGED
@@ -1,52 +1,5 @@
|
|
1
|
-
require '
|
1
|
+
require 'dh_easy/test'
|
2
2
|
require 'ae_easy/core'
|
3
|
-
require 'ae_easy_override/core'
|
4
|
-
require 'ae_easy/test/helper'
|
5
|
-
require 'ae_easy/test/rake'
|
6
|
-
require 'ae_easy/test/version'
|
7
3
|
|
8
|
-
module
|
9
|
-
|
10
|
-
# Enable test mode inside executors.
|
11
|
-
def self.enable_test_mode
|
12
|
-
@@test_mode = true
|
13
|
-
end
|
14
|
-
|
15
|
-
# Disable test mode inside executors.
|
16
|
-
def self.disable_test_mode
|
17
|
-
@@test_mode = false
|
18
|
-
end
|
19
|
-
|
20
|
-
# Check if test mode is enabled inside executors.
|
21
|
-
#
|
22
|
-
# @return [Boolean] `true` when test mode enabled, else `false`.
|
23
|
-
def self.test_mode?
|
24
|
-
@@test_mode ||= false
|
25
|
-
end
|
26
|
-
|
27
|
-
# Verbose data log within caller backtrace.
|
28
|
-
#
|
29
|
-
# @param [String] message Message to display.
|
30
|
-
# @param [Object,nil] data (nil) Data to inspect.
|
31
|
-
# @param [Array] log_caller (nil) Log caller. Defaults to method caller.
|
32
|
-
def self.verbose_log message, data = nil, log_caller = nil
|
33
|
-
log_caller ||= caller
|
34
|
-
caller_infos = log_caller.first.split ":"
|
35
|
-
text = data.nil? ? 'nil' : JSON.pretty_generate(data)
|
36
|
-
puts "\n#{caller_infos[0]}:#{caller_infos[1]} - #{message}#{text}\n\n"
|
37
|
-
end
|
38
|
-
|
39
|
-
# Verbose a match diff.
|
40
|
-
#
|
41
|
-
# @param [Hash] diff Match diff to verbose.
|
42
|
-
# @param [Array] log_caller (nil) Log caller. Defaults to method caller.
|
43
|
-
def self.verbose_match_diff type, diff, log_caller = nil
|
44
|
-
unless diff[:saved].nil? || diff[:saved].count < 1
|
45
|
-
verbose_log "Non matching saved #{type}: ", diff[:saved], log_caller
|
46
|
-
end
|
47
|
-
unless diff[:expected].nil? || diff[:expected].count < 1
|
48
|
-
verbose_log "Non matching expected #{type}: ", diff[:expected], log_caller
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
4
|
+
# (Deprecated) Alias to DhEasy module.
|
5
|
+
AeEasy = ::DhEasy unless defined? ::AeEasy
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ae_easy-test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eduardo Rosales
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: dh_easy-test
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: ae_easy-core
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.2.1
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.2.1
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: bundler
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,48 +80,6 @@ dependencies:
|
|
66
80
|
- - "~>"
|
67
81
|
- !ruby/object:Gem::Version
|
68
82
|
version: '5'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: simplecov
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - "~>"
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - "~>"
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: simplecov-console
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - "~>"
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - "~>"
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: timecop
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - "~>"
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
104
|
-
type: :development
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - "~>"
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
83
|
- !ruby/object:Gem::Dependency
|
112
84
|
name: byebug
|
113
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,7 +94,8 @@ dependencies:
|
|
122
94
|
- - ">="
|
123
95
|
- !ruby/object:Gem::Version
|
124
96
|
version: '0'
|
125
|
-
description:
|
97
|
+
description: "(Deprecated: Use dh_easy_test gem instead.) Compatibility alias for
|
98
|
+
DataHen Easy toolkit test module to support other complex modules."
|
126
99
|
email:
|
127
100
|
- eduardo@datahen.com
|
128
101
|
executables: []
|
@@ -138,44 +111,12 @@ files:
|
|
138
111
|
- README.md
|
139
112
|
- Rakefile
|
140
113
|
- ae_easy-test.gemspec
|
141
|
-
- doc/AeEasy.html
|
142
|
-
- doc/AeEasy/Core.html
|
143
|
-
- doc/AeEasy/Core/Mock.html
|
144
|
-
- doc/AeEasy/Core/Mock/FakeExecutor.html
|
145
|
-
- doc/AeEasy/Core/Modk.html
|
146
|
-
- doc/AeEasy/Core/Plugin.html
|
147
|
-
- doc/AeEasy/Core/Plugin/ExecutorBehavior.html
|
148
|
-
- doc/AeEasy/Test.html
|
149
|
-
- doc/AeEasy/Test/Helper.html
|
150
|
-
- doc/AeEasy/Test/RecordTask.html
|
151
|
-
- doc/_index.html
|
152
|
-
- doc/class_list.html
|
153
|
-
- doc/css/common.css
|
154
|
-
- doc/css/full_list.css
|
155
|
-
- doc/css/style.css
|
156
|
-
- doc/file.README.html
|
157
|
-
- doc/file_list.html
|
158
|
-
- doc/frames.html
|
159
|
-
- doc/index.html
|
160
|
-
- doc/js/app.js
|
161
|
-
- doc/js/full_list.js
|
162
|
-
- doc/js/jquery.js
|
163
|
-
- doc/method_list.html
|
164
|
-
- doc/top-level-namespace.html
|
165
114
|
- lib/ae_easy/test.rb
|
166
|
-
|
167
|
-
- lib/ae_easy/test/rake.rb
|
168
|
-
- lib/ae_easy/test/version.rb
|
169
|
-
- lib/ae_easy_override/core.rb
|
170
|
-
- lib/ae_easy_override/core/mock.rb
|
171
|
-
- lib/ae_easy_override/core/mock/fake_executor.rb
|
172
|
-
- lib/ae_easy_override/core/plugin.rb
|
173
|
-
- lib/ae_easy_override/core/plugin/executor_behavior.rb
|
174
|
-
homepage: https://answersengine.com
|
115
|
+
homepage: https://datahen.com
|
175
116
|
licenses:
|
176
117
|
- MIT
|
177
118
|
metadata:
|
178
|
-
homepage_uri: https://
|
119
|
+
homepage_uri: https://datahen.com
|
179
120
|
source_code_uri: https://github.com/answersengine/ae_easy-test
|
180
121
|
post_install_message:
|
181
122
|
rdoc_options: []
|
@@ -196,5 +137,6 @@ rubyforge_project:
|
|
196
137
|
rubygems_version: 2.7.6
|
197
138
|
signing_key:
|
198
139
|
specification_version: 4
|
199
|
-
summary:
|
140
|
+
summary: "(Deprecated: Use dh_easy_test gem instead.) Compatibility alias for DataHen
|
141
|
+
Easy toolkit test module"
|
200
142
|
test_files: []
|
data/doc/AeEasy.html
DELETED
@@ -1,117 +0,0 @@
|
|
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
|
8
|
-
|
9
|
-
— Documentation by YARD 0.9.19
|
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";
|
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 (A)</a> »
|
40
|
-
|
41
|
-
|
42
|
-
<span class="title">AeEasy</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
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
</h1>
|
67
|
-
<div class="box_info">
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
<dl>
|
80
|
-
<dt>Defined in:</dt>
|
81
|
-
<dd>lib/ae_easy/test.rb<span class="defines">,<br />
|
82
|
-
lib/ae_easy/test/rake.rb,<br /> lib/ae_easy/test/helper.rb,<br /> lib/ae_easy/test/version.rb,<br /> lib/ae_easy_override/core.rb,<br /> lib/ae_easy_override/core/mock.rb,<br /> lib/ae_easy_override/core/plugin.rb,<br /> lib/ae_easy_override/core/mock/fake_executor.rb,<br /> lib/ae_easy_override/core/plugin/executor_behavior.rb</span>
|
83
|
-
</dd>
|
84
|
-
</dl>
|
85
|
-
|
86
|
-
</div>
|
87
|
-
|
88
|
-
<h2>Defined Under Namespace</h2>
|
89
|
-
<p class="children">
|
90
|
-
|
91
|
-
|
92
|
-
<strong class="modules">Modules:</strong> <span class='object_link'><a href="AeEasy/Core.html" title="AeEasy::Core (module)">Core</a></span>, <span class='object_link'><a href="AeEasy/Test.html" title="AeEasy::Test (module)">Test</a></span>
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
</p>
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
</div>
|
108
|
-
|
109
|
-
<div id="footer">
|
110
|
-
Generated on Thu Apr 25 19:39:30 2019 by
|
111
|
-
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
112
|
-
0.9.19 (ruby-2.5.3).
|
113
|
-
</div>
|
114
|
-
|
115
|
-
</div>
|
116
|
-
</body>
|
117
|
-
</html>
|
data/doc/AeEasy/Core.html
DELETED
@@ -1,117 +0,0 @@
|
|
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
|
8
|
-
|
9
|
-
— Documentation by YARD 0.9.19
|
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";
|
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 (C)</a> »
|
40
|
-
<span class='title'><span class='object_link'><a href="../AeEasy.html" title="AeEasy (module)">AeEasy</a></span></span>
|
41
|
-
»
|
42
|
-
<span class="title">Core</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
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
</h1>
|
67
|
-
<div class="box_info">
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
<dl>
|
80
|
-
<dt>Defined in:</dt>
|
81
|
-
<dd>lib/ae_easy_override/core.rb<span class="defines">,<br />
|
82
|
-
lib/ae_easy_override/core/mock.rb,<br /> lib/ae_easy_override/core/plugin.rb,<br /> lib/ae_easy_override/core/mock/fake_executor.rb,<br /> lib/ae_easy_override/core/plugin/executor_behavior.rb</span>
|
83
|
-
</dd>
|
84
|
-
</dl>
|
85
|
-
|
86
|
-
</div>
|
87
|
-
|
88
|
-
<h2>Defined Under Namespace</h2>
|
89
|
-
<p class="children">
|
90
|
-
|
91
|
-
|
92
|
-
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Core/Mock.html" title="AeEasy::Core::Mock (module)">Mock</a></span>, <span class='object_link'><a href="Core/Modk.html" title="AeEasy::Core::Modk (module)">Modk</a></span>, <span class='object_link'><a href="Core/Plugin.html" title="AeEasy::Core::Plugin (module)">Plugin</a></span>
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
</p>
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
</div>
|
108
|
-
|
109
|
-
<div id="footer">
|
110
|
-
Generated on Thu Apr 25 19:39:30 2019 by
|
111
|
-
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
112
|
-
0.9.19 (ruby-2.5.3).
|
113
|
-
</div>
|
114
|
-
|
115
|
-
</div>
|
116
|
-
</body>
|
117
|
-
</html>
|