netlinx-compile 1.0.0 → 3.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +122 -0
  3. data/doc/NetLinx.html +130 -151
  4. data/doc/NetLinx/Compile.html +130 -148
  5. data/doc/NetLinx/Compile/Extension.html +128 -145
  6. data/doc/NetLinx/Compile/Extension/AXS.html +218 -154
  7. data/doc/NetLinx/Compile/ExtensionDiscovery.html +524 -321
  8. data/doc/NetLinx/Compile/ExtensionHandler.html +755 -396
  9. data/doc/NetLinx/Compile/Script.html +431 -282
  10. data/doc/NetLinx/Compiler.html +496 -285
  11. data/doc/NetLinx/CompilerResult.html +1250 -498
  12. data/doc/NetLinx/NoCompilerError.html +142 -155
  13. data/doc/NetLinx/Rake.html +115 -0
  14. data/doc/NetLinx/Rake/Compile.html +358 -0
  15. data/doc/NetLinx/SourceFile.html +702 -423
  16. data/doc/_index.html +234 -0
  17. data/doc/class_list.html +51 -0
  18. data/doc/css/common.css +1 -0
  19. data/doc/css/full_list.css +58 -0
  20. data/doc/css/style.css +496 -0
  21. data/doc/file.README.html +156 -0
  22. data/doc/file.license.html +70 -0
  23. data/doc/file_list.html +61 -0
  24. data/doc/frames.html +17 -0
  25. data/doc/index.html +156 -103
  26. data/doc/js/app.js +314 -0
  27. data/doc/js/full_list.js +216 -0
  28. data/doc/js/jquery.js +4 -18
  29. data/doc/method_list.html +339 -0
  30. data/doc/top-level-namespace.html +110 -0
  31. data/lib/netlinx-compile.rb +11 -1
  32. data/lib/netlinx/compile/extension_discovery.rb +4 -2
  33. data/lib/netlinx/compile/extension_handler.rb +23 -25
  34. data/lib/netlinx/compile/script.rb +4 -3
  35. data/lib/netlinx/compiler.rb +45 -21
  36. data/lib/netlinx/compiler_result.rb +16 -17
  37. data/lib/netlinx/rake/compile.rb +4 -0
  38. data/lib/netlinx/rake/compile/compile.rb +34 -0
  39. data/lib/netlinx/source_file.rb +20 -14
  40. data/lib/test/netlinx/compilable.rb +13 -48
  41. data/lib/test/netlinx/compile/discoverable.rb +3 -14
  42. data/lib/test/netlinx/compile/invokable.rb +3 -15
  43. data/license.txt +1 -1
  44. metadata +114 -74
  45. data/README.txt +0 -2
  46. data/doc/Test.html +0 -147
  47. data/doc/Test/NetLinx.html +0 -147
  48. data/doc/Test/NetLinx/Compilable.html +0 -148
  49. data/doc/Test/NetLinx/Compile.html +0 -146
  50. data/doc/Test/NetLinx/Compile/Discoverable.html +0 -148
  51. data/doc/Test/NetLinx/Compile/Invokable.html +0 -149
  52. data/doc/created.rid +0 -12
  53. data/doc/images/add.png +0 -0
  54. data/doc/images/arrow_up.png +0 -0
  55. data/doc/images/brick.png +0 -0
  56. data/doc/images/brick_link.png +0 -0
  57. data/doc/images/bug.png +0 -0
  58. data/doc/images/bullet_black.png +0 -0
  59. data/doc/images/bullet_toggle_minus.png +0 -0
  60. data/doc/images/bullet_toggle_plus.png +0 -0
  61. data/doc/images/date.png +0 -0
  62. data/doc/images/delete.png +0 -0
  63. data/doc/images/find.png +0 -0
  64. data/doc/images/loadingAnimation.gif +0 -0
  65. data/doc/images/macFFBgHack.png +0 -0
  66. data/doc/images/package.png +0 -0
  67. data/doc/images/page_green.png +0 -0
  68. data/doc/images/page_white_text.png +0 -0
  69. data/doc/images/page_white_width.png +0 -0
  70. data/doc/images/plugin.png +0 -0
  71. data/doc/images/ruby.png +0 -0
  72. data/doc/images/tag_blue.png +0 -0
  73. data/doc/images/tag_green.png +0 -0
  74. data/doc/images/transparent.png +0 -0
  75. data/doc/images/wrench.png +0 -0
  76. data/doc/images/wrench_orange.png +0 -0
  77. data/doc/images/zoom.png +0 -0
  78. data/doc/js/darkfish.js +0 -155
  79. data/doc/js/navigation.js +0 -142
  80. data/doc/js/search.js +0 -94
  81. data/doc/js/search_index.js +0 -1
  82. data/doc/js/searcher.js +0 -228
  83. data/doc/rdoc.css +0 -595
  84. data/doc/table_of_contents.html +0 -138
@@ -1,14 +1,3 @@
1
- module Test
2
- module NetLinx
3
- module Compile
4
- # Interface tests for an object that registers an EventHandler
5
- # under NetLinx::Compile::Extension.
6
- module Discoverable
7
- # :nodoc:
8
- def test_responds_to_get_handler
9
- assert_respond_to @object, :get_handler
10
- end
11
- end
12
- end
13
- end
14
- end
1
+ shared_examples "discoverable" do
2
+ it { should respond_to :get_handler }
3
+ end
@@ -1,15 +1,3 @@
1
- module Test
2
- module NetLinx
3
- module Compile
4
- # Interface tests for an object that provides a means to
5
- # invoke the compiler on a Compilable file extension.
6
- # See ExtensionDiscovery.
7
- module Invokable
8
- # :nodoc:
9
- def test_responds_to_compile
10
- assert_respond_to @object, :compile
11
- end
12
- end
13
- end
14
- end
15
- end
1
+ shared_examples "invokable" do
2
+ it { should respond_to :compile }
3
+ end
@@ -1,4 +1,4 @@
1
- Copyright 2013 Alex McLain
1
+ Copyright 2013, 2015 Alex McLain
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
metadata CHANGED
@@ -1,55 +1,117 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: netlinx-compile
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex McLain
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-24 00:00:00.000000000 Z
11
+ date: 2020-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '13.0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: '13.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: yard
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.9'
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 0.9.11
37
+ type: :development
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - "~>"
42
+ - !ruby/object:Gem::Version
43
+ version: '0.9'
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 0.9.11
47
+ - !ruby/object:Gem::Dependency
48
+ name: rspec
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '3.9'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '3.9'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rspec-its
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '1.3'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '1.3'
75
+ - !ruby/object:Gem::Dependency
76
+ name: fivemat
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '1.3'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '1.3'
27
89
  - !ruby/object:Gem::Dependency
28
- name: rdoc
90
+ name: pry
29
91
  requirement: !ruby/object:Gem::Requirement
30
92
  requirements:
31
- - - '>='
93
+ - - ">="
32
94
  - !ruby/object:Gem::Version
33
95
  version: '0'
34
96
  type: :development
35
97
  prerelease: false
36
98
  version_requirements: !ruby/object:Gem::Requirement
37
99
  requirements:
38
- - - '>='
100
+ - - ">="
39
101
  - !ruby/object:Gem::Version
40
102
  version: '0'
41
103
  - !ruby/object:Gem::Dependency
42
- name: pry
104
+ name: rb-readline
43
105
  requirement: !ruby/object:Gem::Requirement
44
106
  requirements:
45
- - - '>='
107
+ - - ">="
46
108
  - !ruby/object:Gem::Version
47
109
  version: '0'
48
110
  type: :development
49
111
  prerelease: false
50
112
  version_requirements: !ruby/object:Gem::Requirement
51
113
  requirements:
52
- - - '>='
114
+ - - ">="
53
115
  - !ruby/object:Gem::Version
54
116
  version: '0'
55
117
  description: This library provides an executable, netlinx-compile, that wraps the
@@ -57,81 +119,60 @@ description: This library provides an executable, netlinx-compile, that wraps th
57
119
  access, as well as for integration with third-party tools with source code build
58
120
  support, like text editors and IDE's. Also provided in this library is a Ruby API
59
121
  for invoking the NetLinx compiler.
60
- email: alex@alexmclain.com
122
+ email:
123
+ - alex@alexmclain.com
61
124
  executables:
62
125
  - netlinx-compile
63
126
  extensions: []
64
127
  extra_rdoc_files: []
65
128
  files:
66
- - license.txt
67
- - README.txt
129
+ - README.md
68
130
  - bin/netlinx-compile
131
+ - doc/NetLinx.html
132
+ - doc/NetLinx/Compile.html
133
+ - doc/NetLinx/Compile/Extension.html
134
+ - doc/NetLinx/Compile/Extension/AXS.html
135
+ - doc/NetLinx/Compile/ExtensionDiscovery.html
136
+ - doc/NetLinx/Compile/ExtensionHandler.html
137
+ - doc/NetLinx/Compile/Script.html
138
+ - doc/NetLinx/Compiler.html
139
+ - doc/NetLinx/CompilerResult.html
140
+ - doc/NetLinx/NoCompilerError.html
141
+ - doc/NetLinx/Rake.html
142
+ - doc/NetLinx/Rake/Compile.html
143
+ - doc/NetLinx/SourceFile.html
144
+ - doc/_index.html
145
+ - doc/class_list.html
146
+ - doc/css/common.css
147
+ - doc/css/full_list.css
148
+ - doc/css/style.css
149
+ - doc/file.README.html
150
+ - doc/file.license.html
151
+ - doc/file_list.html
152
+ - doc/frames.html
153
+ - doc/index.html
154
+ - doc/js/app.js
155
+ - doc/js/full_list.js
156
+ - doc/js/jquery.js
157
+ - doc/method_list.html
158
+ - doc/top-level-namespace.html
159
+ - lib/netlinx-compile.rb
69
160
  - lib/netlinx/compile/extension/axs.rb
70
161
  - lib/netlinx/compile/extension_discovery.rb
71
162
  - lib/netlinx/compile/extension_handler.rb
72
163
  - lib/netlinx/compile/script.rb
73
164
  - lib/netlinx/compiler.rb
74
165
  - lib/netlinx/compiler_result.rb
166
+ - lib/netlinx/rake/compile.rb
167
+ - lib/netlinx/rake/compile/compile.rb
75
168
  - lib/netlinx/source_file.rb
76
- - lib/netlinx-compile.rb
77
169
  - lib/test/netlinx/compilable.rb
78
170
  - lib/test/netlinx/compile/discoverable.rb
79
171
  - lib/test/netlinx/compile/invokable.rb
80
- - doc/created.rid
81
- - doc/images/add.png
82
- - doc/images/arrow_up.png
83
- - doc/images/brick.png
84
- - doc/images/brick_link.png
85
- - doc/images/bug.png
86
- - doc/images/bullet_black.png
87
- - doc/images/bullet_toggle_minus.png
88
- - doc/images/bullet_toggle_plus.png
89
- - doc/images/date.png
90
- - doc/images/delete.png
91
- - doc/images/find.png
92
- - doc/images/loadingAnimation.gif
93
- - doc/images/macFFBgHack.png
94
- - doc/images/package.png
95
- - doc/images/page_green.png
96
- - doc/images/page_white_text.png
97
- - doc/images/page_white_width.png
98
- - doc/images/plugin.png
99
- - doc/images/ruby.png
100
- - doc/images/tag_blue.png
101
- - doc/images/tag_green.png
102
- - doc/images/transparent.png
103
- - doc/images/wrench.png
104
- - doc/images/wrench_orange.png
105
- - doc/images/zoom.png
106
- - doc/index.html
107
- - doc/js/darkfish.js
108
- - doc/js/jquery.js
109
- - doc/js/navigation.js
110
- - doc/js/search.js
111
- - doc/js/searcher.js
112
- - doc/js/search_index.js
113
- - doc/NetLinx/Compile/Extension/AXS.html
114
- - doc/NetLinx/Compile/Extension.html
115
- - doc/NetLinx/Compile/ExtensionDiscovery.html
116
- - doc/NetLinx/Compile/ExtensionHandler.html
117
- - doc/NetLinx/Compile/Script.html
118
- - doc/NetLinx/Compile.html
119
- - doc/NetLinx/Compiler.html
120
- - doc/NetLinx/CompilerResult.html
121
- - doc/NetLinx/NoCompilerError.html
122
- - doc/NetLinx/SourceFile.html
123
- - doc/NetLinx.html
124
- - doc/rdoc.css
125
- - doc/table_of_contents.html
126
- - doc/Test/NetLinx/Compilable.html
127
- - doc/Test/NetLinx/Compile/Discoverable.html
128
- - doc/Test/NetLinx/Compile/Invokable.html
129
- - doc/Test/NetLinx/Compile.html
130
- - doc/Test/NetLinx.html
131
- - doc/Test.html
132
- homepage: https://sourceforge.net/projects/netlinx-compile/
172
+ - license.txt
173
+ homepage: https://github.com/amclain/netlinx-compile
133
174
  licenses:
134
- - Apache 2.0
175
+ - Apache-2.0
135
176
  metadata: {}
136
177
  post_install_message:
137
178
  rdoc_options: []
@@ -139,17 +180,16 @@ require_paths:
139
180
  - lib
140
181
  required_ruby_version: !ruby/object:Gem::Requirement
141
182
  requirements:
142
- - - '>='
183
+ - - ">="
143
184
  - !ruby/object:Gem::Version
144
185
  version: '0'
145
186
  required_rubygems_version: !ruby/object:Gem::Requirement
146
187
  requirements:
147
- - - '>='
188
+ - - ">="
148
189
  - !ruby/object:Gem::Version
149
190
  version: '0'
150
191
  requirements: []
151
- rubyforge_project:
152
- rubygems_version: 2.0.3
192
+ rubygems_version: 3.1.4
153
193
  signing_key:
154
194
  specification_version: 4
155
195
  summary: A wrapper utility for the AMX NetLinx compiler.
data/README.txt DELETED
@@ -1,2 +0,0 @@
1
- Website:
2
- https://sourceforge.net/p/netlinx-compile/wiki/Home/
@@ -1,147 +0,0 @@
1
- <!DOCTYPE html>
2
-
3
- <html>
4
- <head>
5
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
-
7
- <title>module Test - RDoc Documentation</title>
8
-
9
- <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
-
11
- <script type="text/javascript">
12
- var rdoc_rel_prefix = "./";
13
- </script>
14
-
15
- <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
- <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
- <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
- <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
- <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
- <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
21
-
22
-
23
- <body id="top" class="module">
24
- <nav id="metadata">
25
- <nav id="home-section" class="section">
26
- <h3 class="section-header">
27
- <a href="./index.html">Home</a>
28
- <a href="./table_of_contents.html#classes">Classes</a>
29
- <a href="./table_of_contents.html#methods">Methods</a>
30
- </h3>
31
- </nav>
32
-
33
-
34
- <nav id="search-section" class="section project-section" class="initially-hidden">
35
- <form action="#" method="get" accept-charset="utf-8">
36
- <h3 class="section-header">
37
- <input type="text" name="search" placeholder="Search" id="search-field"
38
- title="Type to search, Up and Down to navigate, Enter to load">
39
- </h3>
40
- </form>
41
-
42
- <ul id="search-results" class="initially-hidden"></ul>
43
- </nav>
44
-
45
-
46
-
47
-
48
- <div id="file-metadata">
49
- <nav id="file-list-section" class="section">
50
- <h3 class="section-header">Defined In</h3>
51
- <ul>
52
- <li>lib/test/netlinx/compilable.rb
53
- <li>lib/test/netlinx/compile/discoverable.rb
54
- <li>lib/test/netlinx/compile/invokable.rb
55
- </ul>
56
- </nav>
57
-
58
-
59
- </div>
60
-
61
- <div id="class-metadata">
62
-
63
-
64
-
65
-
66
-
67
- </div>
68
-
69
- <div id="project-metadata">
70
-
71
- <nav id="classindex-section" class="section project-section">
72
- <h3 class="section-header">Class and Module Index</h3>
73
-
74
- <ul class="link-list">
75
-
76
- <li><a href="./NetLinx.html">NetLinx</a>
77
-
78
- <li><a href="./NetLinx/Compile.html">NetLinx::Compile</a>
79
-
80
- <li><a href="./NetLinx/Compile/Extension.html">NetLinx::Compile::Extension</a>
81
-
82
- <li><a href="./NetLinx/Compile/Extension/AXS.html">NetLinx::Compile::Extension::AXS</a>
83
-
84
- <li><a href="./NetLinx/Compile/ExtensionDiscovery.html">NetLinx::Compile::ExtensionDiscovery</a>
85
-
86
- <li><a href="./NetLinx/Compile/ExtensionHandler.html">NetLinx::Compile::ExtensionHandler</a>
87
-
88
- <li><a href="./NetLinx/Compile/Script.html">NetLinx::Compile::Script</a>
89
-
90
- <li><a href="./NetLinx/Compiler.html">NetLinx::Compiler</a>
91
-
92
- <li><a href="./NetLinx/CompilerResult.html">NetLinx::CompilerResult</a>
93
-
94
- <li><a href="./NetLinx/NoCompilerError.html">NetLinx::NoCompilerError</a>
95
-
96
- <li><a href="./NetLinx/SourceFile.html">NetLinx::SourceFile</a>
97
-
98
- <li><a href="./Test.html">Test</a>
99
-
100
- <li><a href="./Test/NetLinx.html">Test::NetLinx</a>
101
-
102
- <li><a href="./Test/NetLinx/Compilable.html">Test::NetLinx::Compilable</a>
103
-
104
- <li><a href="./Test/NetLinx/Compile.html">Test::NetLinx::Compile</a>
105
-
106
- <li><a href="./Test/NetLinx/Compile/Discoverable.html">Test::NetLinx::Compile::Discoverable</a>
107
-
108
- <li><a href="./Test/NetLinx/Compile/Invokable.html">Test::NetLinx::Compile::Invokable</a>
109
-
110
- </ul>
111
- </nav>
112
-
113
- </div>
114
- </nav>
115
-
116
- <div id="documentation">
117
- <h1 class="module">module Test</h1>
118
-
119
- <div id="description" class="description">
120
-
121
- </div><!-- description -->
122
-
123
-
124
-
125
-
126
- <section id="5Buntitled-5D" class="documentation-section">
127
-
128
-
129
-
130
-
131
-
132
-
133
-
134
-
135
- <!-- Methods -->
136
-
137
- </section><!-- 5Buntitled-5D -->
138
-
139
- </div><!-- documentation -->
140
-
141
-
142
- <footer id="validator-badges">
143
- <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
144
- <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.1.
145
- <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
146
- </footer>
147
-