netlinx-compile 1.0.0 → 3.1.2
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 +5 -5
- data/README.md +122 -0
- data/doc/NetLinx.html +130 -151
- data/doc/NetLinx/Compile.html +130 -148
- data/doc/NetLinx/Compile/Extension.html +128 -145
- data/doc/NetLinx/Compile/Extension/AXS.html +218 -154
- data/doc/NetLinx/Compile/ExtensionDiscovery.html +524 -321
- data/doc/NetLinx/Compile/ExtensionHandler.html +755 -396
- data/doc/NetLinx/Compile/Script.html +431 -282
- data/doc/NetLinx/Compiler.html +496 -285
- data/doc/NetLinx/CompilerResult.html +1250 -498
- data/doc/NetLinx/NoCompilerError.html +142 -155
- data/doc/NetLinx/Rake.html +115 -0
- data/doc/NetLinx/Rake/Compile.html +358 -0
- data/doc/NetLinx/SourceFile.html +702 -423
- data/doc/_index.html +234 -0
- data/doc/class_list.html +51 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +58 -0
- data/doc/css/style.css +496 -0
- data/doc/file.README.html +156 -0
- data/doc/file.license.html +70 -0
- data/doc/file_list.html +61 -0
- data/doc/frames.html +17 -0
- data/doc/index.html +156 -103
- data/doc/js/app.js +314 -0
- data/doc/js/full_list.js +216 -0
- data/doc/js/jquery.js +4 -18
- data/doc/method_list.html +339 -0
- data/doc/top-level-namespace.html +110 -0
- data/lib/netlinx-compile.rb +11 -1
- data/lib/netlinx/compile/extension_discovery.rb +4 -2
- data/lib/netlinx/compile/extension_handler.rb +23 -25
- data/lib/netlinx/compile/script.rb +4 -3
- data/lib/netlinx/compiler.rb +45 -21
- data/lib/netlinx/compiler_result.rb +16 -17
- data/lib/netlinx/rake/compile.rb +4 -0
- data/lib/netlinx/rake/compile/compile.rb +34 -0
- data/lib/netlinx/source_file.rb +20 -14
- data/lib/test/netlinx/compilable.rb +13 -48
- data/lib/test/netlinx/compile/discoverable.rb +3 -14
- data/lib/test/netlinx/compile/invokable.rb +3 -15
- data/license.txt +1 -1
- metadata +114 -74
- data/README.txt +0 -2
- data/doc/Test.html +0 -147
- data/doc/Test/NetLinx.html +0 -147
- data/doc/Test/NetLinx/Compilable.html +0 -148
- data/doc/Test/NetLinx/Compile.html +0 -146
- data/doc/Test/NetLinx/Compile/Discoverable.html +0 -148
- data/doc/Test/NetLinx/Compile/Invokable.html +0 -149
- data/doc/created.rid +0 -12
- data/doc/images/add.png +0 -0
- data/doc/images/arrow_up.png +0 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/delete.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_blue.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/transparent.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/js/darkfish.js +0 -155
- data/doc/js/navigation.js +0 -142
- data/doc/js/search.js +0 -94
- data/doc/js/search_index.js +0 -1
- data/doc/js/searcher.js +0 -228
- data/doc/rdoc.css +0 -595
- data/doc/table_of_contents.html +0 -138
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 070bead5068bd6344d281e4310fa5c8b0a73aa14edd370979d2f26533c820766
|
4
|
+
data.tar.gz: 63b6c36466a42c73f8aab382daa5df89090340d4e49ecb5df2f705d423b683d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10927c4db370d334a27fb6d339557c5752544b460d67e435f439364308b3270ca676ce133f7447d428f4570eabe7f4759fb63902673f06562bed65f05d69d3b4
|
7
|
+
data.tar.gz: dd28630c197c1d6dd642c91f4ce8a7021fd73b196430bf24526c8684a4f21ff1b15bf823a7c1c76c2fffd3b3394f20d920937ded45df7b53d9bd85769172207e
|
data/README.md
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
# NetLinx Compile
|
2
|
+
|
3
|
+
netlinx-compile
|
4
|
+
|
5
|
+
A wrapper utility for the AMX NetLinx compiler.
|
6
|
+
|
7
|
+
[](http://badge.fury.io/rb/netlinx-compile)
|
8
|
+
[](http://www.rubydoc.info/gems/netlinx-compile)
|
9
|
+
[](http://www.apache.org/licenses/LICENSE-2.0)
|
10
|
+
|
11
|
+
This library provides an executable, `netlinx-compile`, that wraps the `nlrc.exe`
|
12
|
+
NetLinx compiler provided by AMX. It is designed for easier command line access,
|
13
|
+
as well as for integration with third-party tools with source code build support,
|
14
|
+
like text editors and IDE's. Also provided in this library is a Ruby API for
|
15
|
+
invoking the NetLinx compiler.
|
16
|
+
|
17
|
+
|
18
|
+
## Upgrade Notice
|
19
|
+
|
20
|
+
AMX has broken NetLinx compilier functionality between NLRC.exe v1.0
|
21
|
+
(distributed with NetLinx Studio v3.x) and NLRC.exe v2.1 (distributed with
|
22
|
+
NetLinx Studio 4). NLRC.exe v2.x was distributed with NetLinx Studio 4 versions
|
23
|
+
less than 4.1.1204, and has major problems. It is recommended to *avoid*
|
24
|
+
NLRC.exe v2.x. NLRC.exe v3.x started being distributed in NetLinx Studio
|
25
|
+
v4.1.1204 and appears to have [fixed the problems when compiling include and
|
26
|
+
Duet files](https://github.com/amclain/netlinx-compile/issues/1). Due to the
|
27
|
+
major changes in the NetLinx compiler, it may be necessary to use version 1.x of
|
28
|
+
netlinx-compile when working with projects created with NetLinx Studio v3.x or
|
29
|
+
earlier.
|
30
|
+
|
31
|
+
* Version 1.x of netlinx-compile targets NLRC.exe v1.x.
|
32
|
+
* NLRC.exe v2.x is considered broken and is unsupported by netlinx-compile.
|
33
|
+
* Version 3.x of netlinx-compile targets NLRC.exe v3.x.
|
34
|
+
|
35
|
+
[AMX NetLinx Compiler Bug List](https://github.com/amclain/netlinx-compile/labels/amx%20bug%20-%20can't%20fix)
|
36
|
+
|
37
|
+
|
38
|
+
## Installation
|
39
|
+
|
40
|
+
netlinx-compile is available as a Ruby gem.
|
41
|
+
|
42
|
+
1. Install [Ruby](http://www.ruby-lang.org/en/downloads/) 2.0 or higher
|
43
|
+
(For Windows use [RubyInstaller](http://rubyinstaller.org/downloads/) and make
|
44
|
+
sure ruby/bin is in your [system path](http://www.computerhope.com/issues/ch000549.htm).)
|
45
|
+
2. Open the [command line](http://www.addictivetips.com/windows-tips/windows-7-elevated-command-prompt-in-context-menu/) and type:
|
46
|
+
|
47
|
+
``` text
|
48
|
+
gem install netlinx-compile
|
49
|
+
gem install netlinx-workspace (optional: for NetLinx Studio workspace support)
|
50
|
+
```
|
51
|
+
|
52
|
+
*NOTE: The NetLinx compiler executable provided by AMX, nlrc.exe, must be
|
53
|
+
installed on your computer for this utility to work. It is included in the
|
54
|
+
NetLinx Studio installation by default.*
|
55
|
+
|
56
|
+
**If you receive the following error when running gem install:**
|
57
|
+
`Unable to download data from https://rubygems.org/ - SSL_connect returned=1`
|
58
|
+
|
59
|
+
Follow this guide:
|
60
|
+
[Workaround RubyGems' SSL errors on Ruby for Windows (RubyInstaller)](https://gist.github.com/luislavena/f064211759ee0f806c88)
|
61
|
+
|
62
|
+
|
63
|
+
## Issues, Bugs, Feature Requests
|
64
|
+
|
65
|
+
Any bugs and feature requests should be reported on the GitHub issue tracker:
|
66
|
+
|
67
|
+
https://github.com/amclain/netlinx-compile/issues
|
68
|
+
|
69
|
+
|
70
|
+
**Pull requests are preferred via GitHub.**
|
71
|
+
|
72
|
+
## Use
|
73
|
+
|
74
|
+
**Sublime Text Editor**
|
75
|
+
|
76
|
+
NetLinx Compile can be integrated into [Sublime Text](http://www.sublimetext.com/3)
|
77
|
+
with the [Sublime Text AMX NetLinx Plugin](https://github.com/amclain/sublime-netlinx). This allows NetLinx source code and workspaces to be compiled with the editor's built-in build commands.
|
78
|
+
|
79
|
+
|
80
|
+
**Command Line**
|
81
|
+
|
82
|
+
NetLinx Compile provides friendlier command line access than the traditional
|
83
|
+
NetLinx compiler provided by AMX. For starters, files can now be entered by
|
84
|
+
relative path (`my_file.axs`) as well as absolute path (`c:\path\to\my_file.axs`).
|
85
|
+
A more advanced feature, workspace compiling, can invoke the NetLinx compiler on
|
86
|
+
a workspace file, as well as intelligently seek out a workspace for a given
|
87
|
+
source code file.
|
88
|
+
|
89
|
+
|
90
|
+
Compile a source code file.
|
91
|
+
|
92
|
+
netlinx-compile -s my_source_code.axs
|
93
|
+
|
94
|
+
Compile a workspace (with [NetLinx Workspace](https://github.com/amclain/netlinx-workspace)
|
95
|
+
installed).
|
96
|
+
|
97
|
+
netlinx-compile -s my_workspace.apw
|
98
|
+
|
99
|
+
Find the workspace that contains my_source_code.axs and compile it.
|
100
|
+
|
101
|
+
netlinx-compile -w -s my_source_code.axs
|
102
|
+
|
103
|
+
Print all of the option flags and their descriptions.
|
104
|
+
|
105
|
+
netlinx-compile -h
|
106
|
+
|
107
|
+
|
108
|
+
**Ruby Developer API**
|
109
|
+
|
110
|
+
A Ruby API is provided for developers looking to integrate the NetLinx Compile
|
111
|
+
library into thier own tools.
|
112
|
+
[NetLinx Compile Developer Documentation](http://rubydoc.info/gems/netlinx-compile/frames)
|
113
|
+
|
114
|
+
NetLinx Compile supports the ability to invoke the compiler on third-party
|
115
|
+
files, like when creating new types of workspaces. To add NetLinx Compile
|
116
|
+
support to your Ruby gem, create a handler for your file extension under the
|
117
|
+
namespace NetLinx::Compile::Extension, place the .rb file under
|
118
|
+
lib/netlinx/compile/extension in your gem, and add a dependency or development
|
119
|
+
dependency in your gemspec to the netlinx-compile gem. NetLinx Compile will now
|
120
|
+
automatically use your gem to compile the file extension it specifies. This is
|
121
|
+
implemented in NetLinx::Compile::Extension::AXS, as well as in the
|
122
|
+
[NetLinx Workspace](https://github.com/amclain/netlinx-workspace) gem.
|
data/doc/NetLinx.html
CHANGED
@@ -1,151 +1,130 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
|
3
|
-
<
|
4
|
-
<
|
5
|
-
<meta
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
<
|
16
|
-
|
17
|
-
<script type="text/javascript"
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
<
|
24
|
-
|
25
|
-
<
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
</
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
</
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
<
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
<!-- Methods -->
|
140
|
-
|
141
|
-
</section><!-- 5Buntitled-5D -->
|
142
|
-
|
143
|
-
</div><!-- documentation -->
|
144
|
-
|
145
|
-
|
146
|
-
<footer id="validator-badges">
|
147
|
-
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
148
|
-
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.1.
|
149
|
-
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
150
|
-
</footer>
|
151
|
-
|
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: NetLinx
|
8
|
+
|
9
|
+
— Documentation by YARD 0.9.25
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" />
|
16
|
+
|
17
|
+
<script type="text/javascript">
|
18
|
+
pathId = "NetLinx";
|
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 (N)</a> »
|
40
|
+
|
41
|
+
|
42
|
+
<span class="title">NetLinx</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: NetLinx
|
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/netlinx-compile.rb<span class="defines">,<br />
|
82
|
+
lib/netlinx/compiler.rb,<br /> lib/netlinx/source_file.rb,<br /> lib/netlinx/compile/script.rb,<br /> lib/netlinx/compiler_result.rb,<br /> lib/netlinx/rake/compile/compile.rb,<br /> lib/netlinx/compile/extension/axs.rb,<br /> lib/netlinx/compile/extension_handler.rb,<br /> lib/netlinx/compile/extension_discovery.rb</span>
|
83
|
+
</dd>
|
84
|
+
</dl>
|
85
|
+
|
86
|
+
</div>
|
87
|
+
|
88
|
+
<h2>Overview</h2><div class="docstring">
|
89
|
+
<div class="discussion">
|
90
|
+
|
91
|
+
<p>:nodoc:</p>
|
92
|
+
|
93
|
+
|
94
|
+
</div>
|
95
|
+
</div>
|
96
|
+
<div class="tags">
|
97
|
+
|
98
|
+
|
99
|
+
</div><h2>Defined Under Namespace</h2>
|
100
|
+
<p class="children">
|
101
|
+
|
102
|
+
|
103
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="NetLinx/Compile.html" title="NetLinx::Compile (module)">Compile</a></span>, <span class='object_link'><a href="NetLinx/Rake.html" title="NetLinx::Rake (module)">Rake</a></span>
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
<strong class="classes">Classes:</strong> <span class='object_link'><a href="NetLinx/Compiler.html" title="NetLinx::Compiler (class)">Compiler</a></span>, <span class='object_link'><a href="NetLinx/CompilerResult.html" title="NetLinx::CompilerResult (class)">CompilerResult</a></span>, <span class='object_link'><a href="NetLinx/NoCompilerError.html" title="NetLinx::NoCompilerError (class)">NoCompilerError</a></span>, <span class='object_link'><a href="NetLinx/SourceFile.html" title="NetLinx::SourceFile (class)">SourceFile</a></span>
|
108
|
+
|
109
|
+
|
110
|
+
</p>
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
</div>
|
121
|
+
|
122
|
+
<div id="footer">
|
123
|
+
Generated on Sat Jul 11 17:29:50 2020 by
|
124
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
125
|
+
0.9.25 (ruby-2.7.1).
|
126
|
+
</div>
|
127
|
+
|
128
|
+
</div>
|
129
|
+
</body>
|
130
|
+
</html>
|
data/doc/NetLinx/Compile.html
CHANGED
@@ -1,148 +1,130 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
|
3
|
-
<
|
4
|
-
<
|
5
|
-
<meta
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
<
|
16
|
-
|
17
|
-
<script type="text/javascript"
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
<
|
24
|
-
|
25
|
-
<
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
</
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
<
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
<!-- Methods -->
|
137
|
-
|
138
|
-
</section><!-- 5Buntitled-5D -->
|
139
|
-
|
140
|
-
</div><!-- documentation -->
|
141
|
-
|
142
|
-
|
143
|
-
<footer id="validator-badges">
|
144
|
-
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
145
|
-
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.1.
|
146
|
-
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
147
|
-
</footer>
|
148
|
-
|
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: NetLinx::Compile
|
8
|
+
|
9
|
+
— Documentation by YARD 0.9.25
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" />
|
16
|
+
|
17
|
+
<script type="text/javascript">
|
18
|
+
pathId = "NetLinx::Compile";
|
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="../NetLinx.html" title="NetLinx (module)">NetLinx</a></span></span>
|
41
|
+
»
|
42
|
+
<span class="title">Compile</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: NetLinx::Compile
|
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/netlinx-compile.rb<span class="defines">,<br />
|
82
|
+
lib/netlinx/compile/script.rb,<br /> lib/netlinx/compile/extension/axs.rb,<br /> lib/netlinx/compile/extension_handler.rb,<br /> lib/netlinx/compile/extension_discovery.rb</span>
|
83
|
+
</dd>
|
84
|
+
</dl>
|
85
|
+
|
86
|
+
</div>
|
87
|
+
|
88
|
+
<h2>Overview</h2><div class="docstring">
|
89
|
+
<div class="discussion">
|
90
|
+
|
91
|
+
<p>:nodoc:</p>
|
92
|
+
|
93
|
+
|
94
|
+
</div>
|
95
|
+
</div>
|
96
|
+
<div class="tags">
|
97
|
+
|
98
|
+
|
99
|
+
</div><h2>Defined Under Namespace</h2>
|
100
|
+
<p class="children">
|
101
|
+
|
102
|
+
|
103
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Compile/Extension.html" title="NetLinx::Compile::Extension (module)">Extension</a></span>
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Compile/ExtensionDiscovery.html" title="NetLinx::Compile::ExtensionDiscovery (class)">ExtensionDiscovery</a></span>, <span class='object_link'><a href="Compile/ExtensionHandler.html" title="NetLinx::Compile::ExtensionHandler (class)">ExtensionHandler</a></span>, <span class='object_link'><a href="Compile/Script.html" title="NetLinx::Compile::Script (class)">Script</a></span>
|
108
|
+
|
109
|
+
|
110
|
+
</p>
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
</div>
|
121
|
+
|
122
|
+
<div id="footer">
|
123
|
+
Generated on Sat Jul 11 17:29:50 2020 by
|
124
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
125
|
+
0.9.25 (ruby-2.7.1).
|
126
|
+
</div>
|
127
|
+
|
128
|
+
</div>
|
129
|
+
</body>
|
130
|
+
</html>
|