aixm 0.3.7 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +72 -6
  4. data/README.md +191 -53
  5. data/exe/ckmid +11 -0
  6. data/exe/mkmid +11 -0
  7. data/lib/aixm/association.rb +367 -0
  8. data/lib/aixm/classes.rb +44 -0
  9. data/lib/aixm/component/fato.rb +44 -52
  10. data/lib/aixm/component/frequency.rb +13 -14
  11. data/lib/aixm/component/geometry/arc.rb +2 -2
  12. data/lib/aixm/component/geometry/border.rb +14 -5
  13. data/lib/aixm/component/geometry/circle.rb +8 -2
  14. data/lib/aixm/component/geometry/point.rb +10 -3
  15. data/lib/aixm/component/geometry/rhumb_line.rb +54 -0
  16. data/lib/aixm/component/geometry.rb +38 -38
  17. data/lib/aixm/component/helipad.rb +29 -37
  18. data/lib/aixm/component/layer.rb +28 -19
  19. data/lib/aixm/component/lighting.rb +11 -12
  20. data/lib/aixm/component/runway.rb +46 -53
  21. data/lib/aixm/{feature → component}/service.rb +36 -35
  22. data/lib/aixm/component/surface.rb +3 -3
  23. data/lib/aixm/component/timetable.rb +5 -3
  24. data/lib/aixm/component/{vertical_limits.rb → vertical_limit.rb} +12 -6
  25. data/lib/aixm/config.rb +6 -3
  26. data/lib/aixm/document.rb +31 -49
  27. data/lib/aixm/executables.rb +85 -0
  28. data/lib/aixm/f.rb +28 -0
  29. data/lib/aixm/feature/address.rb +20 -15
  30. data/lib/aixm/feature/airport.rb +113 -129
  31. data/lib/aixm/feature/airspace.rb +54 -23
  32. data/lib/aixm/feature/navigational_aid/designated_point.rb +12 -14
  33. data/lib/aixm/feature/navigational_aid/dme.rb +10 -11
  34. data/lib/aixm/feature/navigational_aid/marker.rb +6 -2
  35. data/lib/aixm/feature/navigational_aid/ndb.rb +6 -2
  36. data/lib/aixm/feature/navigational_aid/tacan.rb +6 -2
  37. data/lib/aixm/feature/navigational_aid/vor.rb +22 -14
  38. data/lib/aixm/feature/navigational_aid.rb +7 -9
  39. data/lib/aixm/feature/obstacle.rb +22 -20
  40. data/lib/aixm/feature/obstacle_group.rb +30 -30
  41. data/lib/aixm/feature/organisation.rb +20 -4
  42. data/lib/aixm/feature/unit.rb +35 -45
  43. data/lib/aixm/feature.rb +13 -3
  44. data/lib/aixm/memoize.rb +89 -0
  45. data/lib/aixm/object.rb +9 -0
  46. data/lib/aixm/payload_hash.rb +114 -0
  47. data/lib/aixm/refinements.rb +34 -50
  48. data/lib/aixm/shortcuts.rb +6 -43
  49. data/lib/aixm/version.rb +1 -1
  50. data/lib/aixm/xy.rb +9 -1
  51. data/lib/aixm.rb +18 -7
  52. data/schemas/ofmx/{0 → 0.1}/OFMX-CSV-Obstacle.json +0 -0
  53. data/schemas/ofmx/{0 → 0.1}/OFMX-CSV.json +0 -0
  54. data/schemas/ofmx/{0 → 0.1}/OFMX-DataTypes.xsd +52 -2
  55. data/schemas/ofmx/{0 → 0.1}/OFMX-Features.xsd +225 -14
  56. data/schemas/ofmx/{0 → 0.1}/OFMX-Snapshot.xsd +0 -5
  57. data.tar.gz.sig +0 -0
  58. metadata +116 -164
  59. metadata.gz.sig +0 -0
  60. data/.gitignore +0 -6
  61. data/.ruby-version +0 -1
  62. data/.travis.yml +0 -8
  63. data/.yardopts +0 -3
  64. data/Guardfile +0 -8
  65. data/aixm.gemspec +0 -35
  66. data/gems.rb +0 -3
  67. data/lib/aixm/component.rb +0 -6
  68. data/rakefile.rb +0 -22
  69. data/spec/factory.rb +0 -559
  70. data/spec/lib/aixm/a_spec.rb +0 -203
  71. data/spec/lib/aixm/component/fato_spec.rb +0 -260
  72. data/spec/lib/aixm/component/frequency_spec.rb +0 -75
  73. data/spec/lib/aixm/component/geometry/arc_spec.rb +0 -75
  74. data/spec/lib/aixm/component/geometry/border_spec.rb +0 -33
  75. data/spec/lib/aixm/component/geometry/circle_spec.rb +0 -70
  76. data/spec/lib/aixm/component/geometry/point_spec.rb +0 -39
  77. data/spec/lib/aixm/component/geometry_spec.rb +0 -321
  78. data/spec/lib/aixm/component/helipad_spec.rb +0 -187
  79. data/spec/lib/aixm/component/layer_spec.rb +0 -137
  80. data/spec/lib/aixm/component/lighting_spec.rb +0 -88
  81. data/spec/lib/aixm/component/runway_spec.rb +0 -472
  82. data/spec/lib/aixm/component/surface_spec.rb +0 -124
  83. data/spec/lib/aixm/component/timetable_spec.rb +0 -49
  84. data/spec/lib/aixm/component/vertical_limits_spec.rb +0 -97
  85. data/spec/lib/aixm/config_spec.rb +0 -41
  86. data/spec/lib/aixm/d_spec.rb +0 -150
  87. data/spec/lib/aixm/document_spec.rb +0 -1875
  88. data/spec/lib/aixm/errors_spec.rb +0 -14
  89. data/spec/lib/aixm/f_spec.rb +0 -85
  90. data/spec/lib/aixm/feature/address_spec.rb +0 -55
  91. data/spec/lib/aixm/feature/airport_spec.rb +0 -770
  92. data/spec/lib/aixm/feature/airspace_spec.rb +0 -390
  93. data/spec/lib/aixm/feature/navigational_aid/designated_point_spec.rb +0 -98
  94. data/spec/lib/aixm/feature/navigational_aid/dme_spec.rb +0 -92
  95. data/spec/lib/aixm/feature/navigational_aid/marker_spec.rb +0 -79
  96. data/spec/lib/aixm/feature/navigational_aid/ndb_spec.rb +0 -89
  97. data/spec/lib/aixm/feature/navigational_aid/tacan_spec.rb +0 -88
  98. data/spec/lib/aixm/feature/navigational_aid/vor_spec.rb +0 -245
  99. data/spec/lib/aixm/feature/navigational_aid_spec.rb +0 -52
  100. data/spec/lib/aixm/feature/obstacle_group_spec.rb +0 -326
  101. data/spec/lib/aixm/feature/obstacle_spec.rb +0 -279
  102. data/spec/lib/aixm/feature/organisation_spec.rb +0 -77
  103. data/spec/lib/aixm/feature/service_spec.rb +0 -59
  104. data/spec/lib/aixm/feature/unit_spec.rb +0 -230
  105. data/spec/lib/aixm/feature_spec.rb +0 -38
  106. data/spec/lib/aixm/p_spec.rb +0 -189
  107. data/spec/lib/aixm/refinements_spec.rb +0 -381
  108. data/spec/lib/aixm/version_spec.rb +0 -7
  109. data/spec/lib/aixm/w_spec.rb +0 -150
  110. data/spec/lib/aixm/xy_spec.rb +0 -180
  111. data/spec/lib/aixm/z_spec.rb +0 -94
  112. data/spec/macros/marking.rb +0 -12
  113. data/spec/macros/organisation.rb +0 -11
  114. data/spec/macros/remarks.rb +0 -12
  115. data/spec/macros/timetable.rb +0 -11
  116. data/spec/macros/xy.rb +0 -11
  117. data/spec/macros/z_qnh.rb +0 -11
  118. data/spec/sounds/failure.mp3 +0 -0
  119. data/spec/sounds/success.mp3 +0 -0
  120. data/spec/spec_helper.rb +0 -55
@@ -193,11 +193,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
193
193
  <xsd:documentation>The version of the OFMX-Snapshot.xsd schema to which the message conforms</xsd:documentation>
194
194
  </xsd:annotation>
195
195
  </xsd:attribute>
196
- <xsd:attribute name="region" type="codeRegion">
197
- <xsd:annotation>
198
- <xsd:documentation>Region the data in this document belongs to</xsd:documentation>
199
- </xsd:annotation>
200
- </xsd:attribute>
201
196
  <xsd:attribute name="origin" type="xsd:string" use="required">
202
197
  <xsd:annotation>
203
198
  <xsd:documentation>The originator (source) of the message</xsd:documentation>
data.tar.gz.sig ADDED
Binary file
metadata CHANGED
@@ -1,15 +1,79 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aixm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sven Schwyn
8
- autorequire:
9
- bindir: bin
10
- cert_chain: []
11
- date: 2019-09-29 00:00:00.000000000 Z
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDcDCCAligAwIBAgIBATANBgkqhkiG9w0BAQUFADA/MQ0wCwYDVQQDDARydWJ5
14
+ MRkwFwYKCZImiZPyLGQBGRYJYml0Y2V0ZXJhMRMwEQYKCZImiZPyLGQBGRYDY29t
15
+ MB4XDTIxMTEwODE0MzIyM1oXDTIyMTEwODE0MzIyM1owPzENMAsGA1UEAwwEcnVi
16
+ eTEZMBcGCgmSJomT8ixkARkWCWJpdGNldGVyYTETMBEGCgmSJomT8ixkARkWA2Nv
17
+ bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANwuD4geNdhpSVNJTtHb
18
+ fmVAoPxmER4oyGgaVJSidn/OjU5PcpdypMI/WIxfvjfFizq6kQYAsJZbCr6fG+UN
19
+ 2dZGMXcAC/uKQL5nYESjCPJ4IJP/SC+fiiEpxHQk7PNFoiUVRUieUZIAfHZAdnY3
20
+ ye1/niW7ud0vwKIMrysKWxjgkE0Y6Af1QLzV/6brVRRC5MvHIzYJd8BiSP+wY1O8
21
+ VElw1f6d90KEz2vaQfX7vCxrzIbvAnYiSvM0AIPy/zigTqpW6w3w4sQxQj81oQ9U
22
+ 9vDYtQzXj0c9VrSLvb0DgiGug2cU2bDjA4L3cBE1szX4tbfo8syYqMq51/kTGDxW
23
+ YNUCAwEAAaN3MHUwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFJ8r
24
+ wy1HraZDqg3Khf9UonMWMtJUMB0GA1UdEQQWMBSBEnJ1YnlAYml0Y2V0ZXJhLmNv
25
+ bTAdBgNVHRIEFjAUgRJydWJ5QGJpdGNldGVyYS5jb20wDQYJKoZIhvcNAQEFBQAD
26
+ ggEBACI7lJKRbnRjz0T4Wb9jH4SE0A2yaHAoBzj96luVDjNyoRT3688trEZS75Sg
27
+ GKfChxqKncBrSpxJ0YfWbymNHfUrKhcdSifJ/TtUrTasm6LSnJYLOnLKDO3v8eL3
28
+ gRTq8a5wA7Xtijx3MJEyzdeUh7N+UMKuPps/flPgH5yabUxgxrvuhrXF7Z96nrsP
29
+ EOmNMTc8H7wo4BAKfuMcI/Gh2oCf+tAhr0bGsXyBikmJ6XA45mrOMgv19M1+aMpn
30
+ 1+2Y1+i+4jd1B7qxIgOLxQTNIJiwE0sqU1itFfuesfgUACS7M0IV9u9Bp4hBGNEw
31
+ 5JcY2h7owdMxXIvgk1oakgldFJc=
32
+ -----END CERTIFICATE-----
33
+ date: 2021-11-28 00:00:00.000000000 Z
12
34
  dependencies:
35
+ - !ruby/object:Gem::Dependency
36
+ name: builder
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '3'
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '3'
49
+ - !ruby/object:Gem::Dependency
50
+ name: nokogiri
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '1'
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '1'
63
+ - !ruby/object:Gem::Dependency
64
+ name: dry-inflector
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
13
77
  - !ruby/object:Gem::Dependency
14
78
  name: rake
15
79
  requirement: !ruby/object:Gem::Requirement
@@ -136,54 +200,30 @@ dependencies:
136
200
  - - ">="
137
201
  - !ruby/object:Gem::Version
138
202
  version: '0'
139
- - !ruby/object:Gem::Dependency
140
- name: builder
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - "~>"
144
- - !ruby/object:Gem::Version
145
- version: '3'
146
- type: :runtime
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - "~>"
151
- - !ruby/object:Gem::Version
152
- version: '3'
153
- - !ruby/object:Gem::Dependency
154
- name: nokogiri
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - "~>"
158
- - !ruby/object:Gem::Version
159
- version: '1'
160
- type: :runtime
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - "~>"
165
- - !ruby/object:Gem::Version
166
- version: '1'
167
- description: Aeronautical Information Exchange Model (AIXM 4.5).
203
+ description: |
204
+ Build XML descriptions of aeronautical infrastructure either as AIXM 4.5
205
+ (Aeronautical Information Exchange Model) or OFMX 1 (Open FlightMaps
206
+ eXchange).
168
207
  email:
169
208
  - ruby@bitcetera.com
170
- executables: []
209
+ executables:
210
+ - ckmid
211
+ - mkmid
171
212
  extensions: []
172
- extra_rdoc_files: []
213
+ extra_rdoc_files:
214
+ - README.md
215
+ - CHANGELOG.md
216
+ - LICENSE.txt
173
217
  files:
174
- - ".gitignore"
175
- - ".ruby-version"
176
- - ".travis.yml"
177
- - ".yardopts"
178
218
  - CHANGELOG.md
179
- - Guardfile
180
219
  - LICENSE.txt
181
220
  - README.md
182
- - aixm.gemspec
183
- - gems.rb
221
+ - exe/ckmid
222
+ - exe/mkmid
184
223
  - lib/aixm.rb
185
224
  - lib/aixm/a.rb
186
- - lib/aixm/component.rb
225
+ - lib/aixm/association.rb
226
+ - lib/aixm/classes.rb
187
227
  - lib/aixm/component/fato.rb
188
228
  - lib/aixm/component/frequency.rb
189
229
  - lib/aixm/component/geometry.rb
@@ -191,18 +231,21 @@ files:
191
231
  - lib/aixm/component/geometry/border.rb
192
232
  - lib/aixm/component/geometry/circle.rb
193
233
  - lib/aixm/component/geometry/point.rb
234
+ - lib/aixm/component/geometry/rhumb_line.rb
194
235
  - lib/aixm/component/helipad.rb
195
236
  - lib/aixm/component/layer.rb
196
237
  - lib/aixm/component/lighting.rb
197
238
  - lib/aixm/component/runway.rb
239
+ - lib/aixm/component/service.rb
198
240
  - lib/aixm/component/surface.rb
199
241
  - lib/aixm/component/timetable.rb
200
- - lib/aixm/component/vertical_limits.rb
242
+ - lib/aixm/component/vertical_limit.rb
201
243
  - lib/aixm/config.rb
202
244
  - lib/aixm/constants.rb
203
245
  - lib/aixm/d.rb
204
246
  - lib/aixm/document.rb
205
247
  - lib/aixm/errors.rb
248
+ - lib/aixm/executables.rb
206
249
  - lib/aixm/f.rb
207
250
  - lib/aixm/feature.rb
208
251
  - lib/aixm/feature/address.rb
@@ -218,149 +261,58 @@ files:
218
261
  - lib/aixm/feature/obstacle.rb
219
262
  - lib/aixm/feature/obstacle_group.rb
220
263
  - lib/aixm/feature/organisation.rb
221
- - lib/aixm/feature/service.rb
222
264
  - lib/aixm/feature/unit.rb
265
+ - lib/aixm/memoize.rb
266
+ - lib/aixm/object.rb
223
267
  - lib/aixm/p.rb
268
+ - lib/aixm/payload_hash.rb
224
269
  - lib/aixm/refinements.rb
225
270
  - lib/aixm/shortcuts.rb
226
271
  - lib/aixm/version.rb
227
272
  - lib/aixm/w.rb
228
273
  - lib/aixm/xy.rb
229
274
  - lib/aixm/z.rb
230
- - rakefile.rb
231
275
  - schemas/aixm/4.5/AIXM-DataTypes.xsd
232
276
  - schemas/aixm/4.5/AIXM-Features.xsd
233
277
  - schemas/aixm/4.5/AIXM-Snapshot.xsd
234
- - schemas/ofmx/0/OFMX-CSV-Obstacle.json
235
- - schemas/ofmx/0/OFMX-CSV.json
236
- - schemas/ofmx/0/OFMX-DataTypes.xsd
237
- - schemas/ofmx/0/OFMX-Features.xsd
238
- - schemas/ofmx/0/OFMX-Snapshot.xsd
239
- - spec/factory.rb
240
- - spec/lib/aixm/a_spec.rb
241
- - spec/lib/aixm/component/fato_spec.rb
242
- - spec/lib/aixm/component/frequency_spec.rb
243
- - spec/lib/aixm/component/geometry/arc_spec.rb
244
- - spec/lib/aixm/component/geometry/border_spec.rb
245
- - spec/lib/aixm/component/geometry/circle_spec.rb
246
- - spec/lib/aixm/component/geometry/point_spec.rb
247
- - spec/lib/aixm/component/geometry_spec.rb
248
- - spec/lib/aixm/component/helipad_spec.rb
249
- - spec/lib/aixm/component/layer_spec.rb
250
- - spec/lib/aixm/component/lighting_spec.rb
251
- - spec/lib/aixm/component/runway_spec.rb
252
- - spec/lib/aixm/component/surface_spec.rb
253
- - spec/lib/aixm/component/timetable_spec.rb
254
- - spec/lib/aixm/component/vertical_limits_spec.rb
255
- - spec/lib/aixm/config_spec.rb
256
- - spec/lib/aixm/d_spec.rb
257
- - spec/lib/aixm/document_spec.rb
258
- - spec/lib/aixm/errors_spec.rb
259
- - spec/lib/aixm/f_spec.rb
260
- - spec/lib/aixm/feature/address_spec.rb
261
- - spec/lib/aixm/feature/airport_spec.rb
262
- - spec/lib/aixm/feature/airspace_spec.rb
263
- - spec/lib/aixm/feature/navigational_aid/designated_point_spec.rb
264
- - spec/lib/aixm/feature/navigational_aid/dme_spec.rb
265
- - spec/lib/aixm/feature/navigational_aid/marker_spec.rb
266
- - spec/lib/aixm/feature/navigational_aid/ndb_spec.rb
267
- - spec/lib/aixm/feature/navigational_aid/tacan_spec.rb
268
- - spec/lib/aixm/feature/navigational_aid/vor_spec.rb
269
- - spec/lib/aixm/feature/navigational_aid_spec.rb
270
- - spec/lib/aixm/feature/obstacle_group_spec.rb
271
- - spec/lib/aixm/feature/obstacle_spec.rb
272
- - spec/lib/aixm/feature/organisation_spec.rb
273
- - spec/lib/aixm/feature/service_spec.rb
274
- - spec/lib/aixm/feature/unit_spec.rb
275
- - spec/lib/aixm/feature_spec.rb
276
- - spec/lib/aixm/p_spec.rb
277
- - spec/lib/aixm/refinements_spec.rb
278
- - spec/lib/aixm/version_spec.rb
279
- - spec/lib/aixm/w_spec.rb
280
- - spec/lib/aixm/xy_spec.rb
281
- - spec/lib/aixm/z_spec.rb
282
- - spec/macros/marking.rb
283
- - spec/macros/organisation.rb
284
- - spec/macros/remarks.rb
285
- - spec/macros/timetable.rb
286
- - spec/macros/xy.rb
287
- - spec/macros/z_qnh.rb
288
- - spec/sounds/failure.mp3
289
- - spec/sounds/success.mp3
290
- - spec/spec_helper.rb
278
+ - schemas/ofmx/0.1/OFMX-CSV-Obstacle.json
279
+ - schemas/ofmx/0.1/OFMX-CSV.json
280
+ - schemas/ofmx/0.1/OFMX-DataTypes.xsd
281
+ - schemas/ofmx/0.1/OFMX-Features.xsd
282
+ - schemas/ofmx/0.1/OFMX-Snapshot.xsd
291
283
  homepage: https://github.com/svoop/aixm
292
284
  licenses:
293
285
  - MIT
294
- metadata: {}
295
- post_install_message:
296
- rdoc_options: []
286
+ metadata:
287
+ homepage_uri: https://github.com/svoop/aixm
288
+ changelog_uri: https://github.com/svoop/aixm/blob/main/CHANGELOG.md
289
+ source_code_uri: https://github.com/svoop/aixm
290
+ documentation_uri: https://www.rubydoc.info/gems/aixm
291
+ bug_tracker_uri: https://github.com/svoop/aixm/issues
292
+ post_install_message:
293
+ rdoc_options:
294
+ - "--title"
295
+ - AIXM/OFMX Builder
296
+ - "--main"
297
+ - README.md
298
+ - "--line-numbers"
299
+ - "--inline-source"
300
+ - "--quiet"
297
301
  require_paths:
298
302
  - lib
299
303
  required_ruby_version: !ruby/object:Gem::Requirement
300
304
  requirements:
301
305
  - - ">="
302
306
  - !ruby/object:Gem::Version
303
- version: '2.6'
307
+ version: 3.0.0
304
308
  required_rubygems_version: !ruby/object:Gem::Requirement
305
309
  requirements:
306
310
  - - ">="
307
311
  - !ruby/object:Gem::Version
308
312
  version: '0'
309
313
  requirements: []
310
- rubygems_version: 3.0.6
311
- signing_key:
314
+ rubygems_version: 3.2.32
315
+ signing_key:
312
316
  specification_version: 4
313
- summary: Aeronautical Information Exchange Model (AIXM 4.5).
314
- test_files:
315
- - spec/factory.rb
316
- - spec/lib/aixm/a_spec.rb
317
- - spec/lib/aixm/component/fato_spec.rb
318
- - spec/lib/aixm/component/frequency_spec.rb
319
- - spec/lib/aixm/component/geometry/arc_spec.rb
320
- - spec/lib/aixm/component/geometry/border_spec.rb
321
- - spec/lib/aixm/component/geometry/circle_spec.rb
322
- - spec/lib/aixm/component/geometry/point_spec.rb
323
- - spec/lib/aixm/component/geometry_spec.rb
324
- - spec/lib/aixm/component/helipad_spec.rb
325
- - spec/lib/aixm/component/layer_spec.rb
326
- - spec/lib/aixm/component/lighting_spec.rb
327
- - spec/lib/aixm/component/runway_spec.rb
328
- - spec/lib/aixm/component/surface_spec.rb
329
- - spec/lib/aixm/component/timetable_spec.rb
330
- - spec/lib/aixm/component/vertical_limits_spec.rb
331
- - spec/lib/aixm/config_spec.rb
332
- - spec/lib/aixm/d_spec.rb
333
- - spec/lib/aixm/document_spec.rb
334
- - spec/lib/aixm/errors_spec.rb
335
- - spec/lib/aixm/f_spec.rb
336
- - spec/lib/aixm/feature/address_spec.rb
337
- - spec/lib/aixm/feature/airport_spec.rb
338
- - spec/lib/aixm/feature/airspace_spec.rb
339
- - spec/lib/aixm/feature/navigational_aid/designated_point_spec.rb
340
- - spec/lib/aixm/feature/navigational_aid/dme_spec.rb
341
- - spec/lib/aixm/feature/navigational_aid/marker_spec.rb
342
- - spec/lib/aixm/feature/navigational_aid/ndb_spec.rb
343
- - spec/lib/aixm/feature/navigational_aid/tacan_spec.rb
344
- - spec/lib/aixm/feature/navigational_aid/vor_spec.rb
345
- - spec/lib/aixm/feature/navigational_aid_spec.rb
346
- - spec/lib/aixm/feature/obstacle_group_spec.rb
347
- - spec/lib/aixm/feature/obstacle_spec.rb
348
- - spec/lib/aixm/feature/organisation_spec.rb
349
- - spec/lib/aixm/feature/service_spec.rb
350
- - spec/lib/aixm/feature/unit_spec.rb
351
- - spec/lib/aixm/feature_spec.rb
352
- - spec/lib/aixm/p_spec.rb
353
- - spec/lib/aixm/refinements_spec.rb
354
- - spec/lib/aixm/version_spec.rb
355
- - spec/lib/aixm/w_spec.rb
356
- - spec/lib/aixm/xy_spec.rb
357
- - spec/lib/aixm/z_spec.rb
358
- - spec/macros/marking.rb
359
- - spec/macros/organisation.rb
360
- - spec/macros/remarks.rb
361
- - spec/macros/timetable.rb
362
- - spec/macros/xy.rb
363
- - spec/macros/z_qnh.rb
364
- - spec/sounds/failure.mp3
365
- - spec/sounds/success.mp3
366
- - spec/spec_helper.rb
317
+ summary: Builder for AIXM/OFMX aeronautical information
318
+ test_files: []
metadata.gz.sig ADDED
Binary file
data/.gitignore DELETED
@@ -1,6 +0,0 @@
1
- .DS_Store
2
- gems.locked
3
- pkg/*
4
- *.gem
5
- .bundle
6
- .yardoc
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- ruby-2.6.4
data/.travis.yml DELETED
@@ -1,8 +0,0 @@
1
- ---
2
- language: ruby
3
- rvm:
4
- - 2.6.3
5
- before_install:
6
- - gem update --system
7
- - gem install bundler
8
- - bundle install
data/.yardopts DELETED
@@ -1,3 +0,0 @@
1
- --no-private
2
- lib/**/*.rb -
3
- README.md CHANGELOG.md LICENSE.txt
data/Guardfile DELETED
@@ -1,8 +0,0 @@
1
- clearing :on
2
-
3
- guard :minitest do
4
- watch(%r{^spec/(.+)_spec\.rb})
5
- watch(%r{^lib/(.+)\.rb}) { |m| "spec/lib/#{m[1]}_spec.rb" }
6
- watch(%r{^spec/(spec_helper|factory)\.rb}) { 'spec' }
7
- watch(%r{^spec/macros/(.+).rb}) { 'spec' }
8
- end
data/aixm.gemspec DELETED
@@ -1,35 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'aixm/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = 'aixm'
8
- spec.version = AIXM::VERSION
9
- spec.authors = ['Sven Schwyn']
10
- spec.email = ['ruby@bitcetera.com']
11
- spec.description = %q(Aeronautical Information Exchange Model (AIXM 4.5).)
12
- spec.summary = %q(Aeronautical Information Exchange Model (AIXM 4.5).)
13
- spec.homepage = 'https://github.com/svoop/aixm'
14
- spec.license = 'MIT'
15
-
16
- spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ['lib']
20
-
21
- spec.required_ruby_version = '>= 2.6'
22
-
23
- spec.add_development_dependency 'rake'
24
- spec.add_development_dependency 'minitest'
25
- spec.add_development_dependency 'minitest-reporters'
26
- spec.add_development_dependency 'minitest-sound'
27
- spec.add_development_dependency 'minitest-matchers'
28
- spec.add_development_dependency 'minitest-focus'
29
- spec.add_development_dependency 'guard'
30
- spec.add_development_dependency 'guard-minitest'
31
- spec.add_development_dependency 'yard'
32
-
33
- spec.add_runtime_dependency 'builder', '~> 3'
34
- spec.add_runtime_dependency 'nokogiri', '~> 1'
35
- end
data/gems.rb DELETED
@@ -1,3 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
@@ -1,6 +0,0 @@
1
- module AIXM
2
-
3
- # @abstract
4
- class Component; end
5
-
6
- end
data/rakefile.rb DELETED
@@ -1,22 +0,0 @@
1
- require 'bundler/gem_tasks'
2
-
3
- require 'rake/testtask'
4
-
5
- Rake::TestTask.new do |t|
6
- t.libs << 'lib'
7
- t.test_files = FileList['spec/lib/**/*_spec.rb']
8
- t.verbose = false
9
- t.warning = true
10
- end
11
-
12
- desc "Run local YARD documentation server"
13
- task :yard do
14
- `rm -rf ./.yardoc`
15
- Thread.new do
16
- sleep 2
17
- `open http://localhost:8808`
18
- end
19
- `yard server -r`
20
- end
21
-
22
- task default: :test