aixm 0.3.8 → 0.3.10

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.
Files changed (115) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +1 -0
  3. data.tar.gz.sig +0 -0
  4. data/CHANGELOG.md +33 -3
  5. data/README.md +166 -56
  6. data/exe/ckmid +14 -0
  7. data/exe/mkmid +14 -0
  8. data/lib/aixm.rb +16 -6
  9. data/lib/aixm/association.rb +369 -0
  10. data/lib/aixm/classes.rb +43 -0
  11. data/lib/aixm/component/fato.rb +45 -53
  12. data/lib/aixm/component/frequency.rb +11 -12
  13. data/lib/aixm/component/geometry.rb +36 -38
  14. data/lib/aixm/component/geometry/arc.rb +2 -2
  15. data/lib/aixm/component/geometry/border.rb +6 -3
  16. data/lib/aixm/component/geometry/circle.rb +8 -2
  17. data/lib/aixm/component/geometry/point.rb +8 -2
  18. data/lib/aixm/component/helipad.rb +30 -38
  19. data/lib/aixm/component/layer.rb +28 -19
  20. data/lib/aixm/component/lighting.rb +12 -13
  21. data/lib/aixm/component/runway.rb +44 -48
  22. data/lib/aixm/{feature → component}/service.rb +37 -36
  23. data/lib/aixm/component/surface.rb +3 -3
  24. data/lib/aixm/component/timetable.rb +2 -2
  25. data/lib/aixm/component/{vertical_limits.rb → vertical_limit.rb} +12 -6
  26. data/lib/aixm/config.rb +2 -1
  27. data/lib/aixm/document.rb +27 -50
  28. data/lib/aixm/executables.rb +85 -0
  29. data/lib/aixm/feature.rb +13 -3
  30. data/lib/aixm/feature/address.rb +12 -13
  31. data/lib/aixm/feature/airport.rb +103 -128
  32. data/lib/aixm/feature/airspace.rb +44 -17
  33. data/lib/aixm/feature/navigational_aid.rb +7 -9
  34. data/lib/aixm/feature/navigational_aid/designated_point.rb +13 -15
  35. data/lib/aixm/feature/navigational_aid/dme.rb +11 -12
  36. data/lib/aixm/feature/navigational_aid/marker.rb +7 -3
  37. data/lib/aixm/feature/navigational_aid/ndb.rb +7 -3
  38. data/lib/aixm/feature/navigational_aid/tacan.rb +7 -3
  39. data/lib/aixm/feature/navigational_aid/vor.rb +23 -15
  40. data/lib/aixm/feature/obstacle.rb +29 -43
  41. data/lib/aixm/feature/obstacle_group.rb +37 -34
  42. data/lib/aixm/feature/organisation.rb +21 -5
  43. data/lib/aixm/feature/unit.rb +36 -46
  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 +29 -76
  48. data/lib/aixm/shortcuts.rb +5 -42
  49. data/lib/aixm/version.rb +1 -1
  50. data/lib/aixm/xy.rb +1 -1
  51. data/schemas/ofmx/0/OFMX-Features.xsd +152 -20
  52. data/schemas/ofmx/0/OFMX-Snapshot.xsd +0 -5
  53. metadata +107 -156
  54. metadata.gz.sig +2 -0
  55. data/.github/workflows/test.yml +0 -26
  56. data/.gitignore +0 -6
  57. data/.ruby-version +0 -1
  58. data/.yardopts +0 -3
  59. data/Guardfile +0 -8
  60. data/aixm.gemspec +0 -35
  61. data/gems.rb +0 -3
  62. data/lib/aixm/component.rb +0 -6
  63. data/rakefile.rb +0 -36
  64. data/spec/factory.rb +0 -559
  65. data/spec/lib/aixm/a_spec.rb +0 -203
  66. data/spec/lib/aixm/component/fato_spec.rb +0 -267
  67. data/spec/lib/aixm/component/frequency_spec.rb +0 -74
  68. data/spec/lib/aixm/component/geometry/arc_spec.rb +0 -73
  69. data/spec/lib/aixm/component/geometry/border_spec.rb +0 -38
  70. data/spec/lib/aixm/component/geometry/circle_spec.rb +0 -68
  71. data/spec/lib/aixm/component/geometry/point_spec.rb +0 -37
  72. data/spec/lib/aixm/component/geometry_spec.rb +0 -316
  73. data/spec/lib/aixm/component/helipad_spec.rb +0 -193
  74. data/spec/lib/aixm/component/layer_spec.rb +0 -135
  75. data/spec/lib/aixm/component/lighting_spec.rb +0 -94
  76. data/spec/lib/aixm/component/runway_spec.rb +0 -479
  77. data/spec/lib/aixm/component/surface_spec.rb +0 -124
  78. data/spec/lib/aixm/component/timetable_spec.rb +0 -47
  79. data/spec/lib/aixm/component/vertical_limits_spec.rb +0 -94
  80. data/spec/lib/aixm/config_spec.rb +0 -41
  81. data/spec/lib/aixm/d_spec.rb +0 -150
  82. data/spec/lib/aixm/document_spec.rb +0 -1884
  83. data/spec/lib/aixm/errors_spec.rb +0 -14
  84. data/spec/lib/aixm/f_spec.rb +0 -85
  85. data/spec/lib/aixm/feature/address_spec.rb +0 -60
  86. data/spec/lib/aixm/feature/airport_spec.rb +0 -776
  87. data/spec/lib/aixm/feature/airspace_spec.rb +0 -394
  88. data/spec/lib/aixm/feature/navigational_aid/designated_point_spec.rb +0 -103
  89. data/spec/lib/aixm/feature/navigational_aid/dme_spec.rb +0 -98
  90. data/spec/lib/aixm/feature/navigational_aid/marker_spec.rb +0 -85
  91. data/spec/lib/aixm/feature/navigational_aid/ndb_spec.rb +0 -95
  92. data/spec/lib/aixm/feature/navigational_aid/tacan_spec.rb +0 -94
  93. data/spec/lib/aixm/feature/navigational_aid/vor_spec.rb +0 -251
  94. data/spec/lib/aixm/feature/navigational_aid_spec.rb +0 -52
  95. data/spec/lib/aixm/feature/obstacle_group_spec.rb +0 -330
  96. data/spec/lib/aixm/feature/obstacle_spec.rb +0 -284
  97. data/spec/lib/aixm/feature/organisation_spec.rb +0 -83
  98. data/spec/lib/aixm/feature/service_spec.rb +0 -59
  99. data/spec/lib/aixm/feature/unit_spec.rb +0 -238
  100. data/spec/lib/aixm/feature_spec.rb +0 -38
  101. data/spec/lib/aixm/p_spec.rb +0 -189
  102. data/spec/lib/aixm/refinements_spec.rb +0 -430
  103. data/spec/lib/aixm/version_spec.rb +0 -7
  104. data/spec/lib/aixm/w_spec.rb +0 -150
  105. data/spec/lib/aixm/xy_spec.rb +0 -180
  106. data/spec/lib/aixm/z_spec.rb +0 -94
  107. data/spec/macros/marking.rb +0 -12
  108. data/spec/macros/organisation.rb +0 -11
  109. data/spec/macros/remarks.rb +0 -12
  110. data/spec/macros/timetable.rb +0 -11
  111. data/spec/macros/xy.rb +0 -11
  112. data/spec/macros/z_qnh.rb +0 -11
  113. data/spec/sounds/failure.mp3 +0 -0
  114. data/spec/sounds/success.mp3 +0 -0
  115. data/spec/spec_helper.rb +0 -62
@@ -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>
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.8
4
+ version: 0.3.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sven Schwyn
8
8
  autorequire:
9
- bindir: bin
10
- cert_chain: []
11
- date: 2019-10-28 00:00:00.000000000 Z
9
+ bindir: exe
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDcDCCAligAwIBAgIBATANBgkqhkiG9w0BAQUFADA/MQ0wCwYDVQQDDARydWJ5
14
+ MRkwFwYKCZImiZPyLGQBGRYJYml0Y2V0ZXJhMRMwEQYKCZImiZPyLGQBGRYDY29t
15
+ MB4XDTIwMDMxNDE5NDgwNVoXDTIxMDMxNDE5NDgwNVowPzENMAsGA1UEAwwEcnVi
16
+ eTEZMBcGCgmSJomT8ixkARkWCWJpdGNldGVyYTETMBEGCgmSJomT8ixkARkWA2Nv
17
+ bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL4k2DCa8/eAFiak4Kwe
18
+ 0Iu8dk0JfHWeywjVVSNv6PtnQ96B/1jLmw5Wb+xYJSyvG6KEOzEMWA/lqO+nIrdO
19
+ 2LDRxuWojH5GROp/dtQ+SxsWlvui4cs9iBmI5Mj0mc1UgST3UFf60ry8OnyR+E9N
20
+ RVVZZykAGmxwyAqD1aq5Yt0lZMdvrGnaLWcZdKC99e812pdTN948k8Iw2GJAaNtH
21
+ Tp17XDfDNBANHjYy9xCqrxvNTfT4Bs43rPA1A77+mkPgI2Vx51u2CWA+K3hP4gAZ
22
+ F50xqnagzgXSOzCme1mC/sUUmoAAB39g2CuNocWuhv0R3/HeqdwAsA/1XpDF2NfQ
23
+ zW8CAwEAAaN3MHUwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFDfY
24
+ gRWUI+J6nX7Po7Zq0zvDopfYMB0GA1UdEQQWMBSBEnJ1YnlAYml0Y2V0ZXJhLmNv
25
+ bTAdBgNVHRIEFjAUgRJydWJ5QGJpdGNldGVyYS5jb20wDQYJKoZIhvcNAQEFBQAD
26
+ ggEBAFsTSBbxIkTdppL8yFl0KglyUMq9DjkMwvz7ORJzHMfw1S2OmXMYnJ5fSXFu
27
+ C/9puwYMdD6V3THyqc1Rhj6RRZ/576MDwIXMgOETQfPTT6jNE+p4cRougDrQ32aV
28
+ 29WIAY21/o0FBuJZqxLDRTu6O7AHrjFnv7Kkpr1oYiR9G4MNEihyNt909nHnSixC
29
+ qn5dLDjawWVvAz5oeD1sE0Kyp6CDY8i3NfBu4aqz8uAbaEJh3jpY5NW2Lv++s7hf
30
+ EUqN8dad5Oosf9hYbfFXPzkJIIGiKMS4e1cbnAr/vadELoccfEN9tSlLuW/voNqA
31
+ 2635TmaVXxUEgIOzRhGlE1+frXI=
32
+ -----END CERTIFICATE-----
33
+ date: 2020-03-15 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
- - ".github/workflows/test.yml"
175
- - ".gitignore"
176
- - ".ruby-version"
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
@@ -195,14 +235,16 @@ files:
195
235
  - lib/aixm/component/layer.rb
196
236
  - lib/aixm/component/lighting.rb
197
237
  - lib/aixm/component/runway.rb
238
+ - lib/aixm/component/service.rb
198
239
  - lib/aixm/component/surface.rb
199
240
  - lib/aixm/component/timetable.rb
200
- - lib/aixm/component/vertical_limits.rb
241
+ - lib/aixm/component/vertical_limit.rb
201
242
  - lib/aixm/config.rb
202
243
  - lib/aixm/constants.rb
203
244
  - lib/aixm/d.rb
204
245
  - lib/aixm/document.rb
205
246
  - lib/aixm/errors.rb
247
+ - lib/aixm/executables.rb
206
248
  - lib/aixm/f.rb
207
249
  - lib/aixm/feature.rb
208
250
  - lib/aixm/feature/address.rb
@@ -218,16 +260,17 @@ files:
218
260
  - lib/aixm/feature/obstacle.rb
219
261
  - lib/aixm/feature/obstacle_group.rb
220
262
  - lib/aixm/feature/organisation.rb
221
- - lib/aixm/feature/service.rb
222
263
  - lib/aixm/feature/unit.rb
264
+ - lib/aixm/memoize.rb
265
+ - lib/aixm/object.rb
223
266
  - lib/aixm/p.rb
267
+ - lib/aixm/payload_hash.rb
224
268
  - lib/aixm/refinements.rb
225
269
  - lib/aixm/shortcuts.rb
226
270
  - lib/aixm/version.rb
227
271
  - lib/aixm/w.rb
228
272
  - lib/aixm/xy.rb
229
273
  - lib/aixm/z.rb
230
- - rakefile.rb
231
274
  - schemas/aixm/4.5/AIXM-DataTypes.xsd
232
275
  - schemas/aixm/4.5/AIXM-Features.xsd
233
276
  - schemas/aixm/4.5/AIXM-Snapshot.xsd
@@ -236,131 +279,39 @@ files:
236
279
  - schemas/ofmx/0/OFMX-DataTypes.xsd
237
280
  - schemas/ofmx/0/OFMX-Features.xsd
238
281
  - 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
291
282
  homepage: https://github.com/svoop/aixm
292
283
  licenses:
293
284
  - MIT
294
- metadata: {}
285
+ metadata:
286
+ homepage_uri: https://github.com/svoop/aixm
287
+ changelog_uri: https://github.com/svoop/aixm/blob/master/CHANGELOG.md
288
+ source_code_uri: https://github.com/svoop/aixm
289
+ documentation_uri: https://www.rubydoc.info/gems/aixm
290
+ bug_tracker_uri: https://github.com/svoop/aixm/issues
295
291
  post_install_message:
296
- rdoc_options: []
292
+ rdoc_options:
293
+ - "--title"
294
+ - AIXM/OFMX Builder
295
+ - "--main"
296
+ - README.md
297
+ - "--line-numbers"
298
+ - "--inline-source"
299
+ - "--quiet"
297
300
  require_paths:
298
301
  - lib
299
302
  required_ruby_version: !ruby/object:Gem::Requirement
300
303
  requirements:
301
304
  - - ">="
302
305
  - !ruby/object:Gem::Version
303
- version: '2.6'
306
+ version: 2.7.0
304
307
  required_rubygems_version: !ruby/object:Gem::Requirement
305
308
  requirements:
306
309
  - - ">="
307
310
  - !ruby/object:Gem::Version
308
311
  version: '0'
309
312
  requirements: []
310
- rubygems_version: 3.0.6
313
+ rubygems_version: 3.1.2
311
314
  signing_key:
312
315
  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
316
+ summary: Builder for AIXM/OFMX aeronautical information
317
+ test_files: []
@@ -0,0 +1,2 @@
1
+ =���g���j���Ig���L.c��G�K�����v�9R���H� 1C�[J��)#d���� í��3���RA��M�A�9Z�Նr,�����E��޼<��p:=�(,�
2
+ 1�!�Q�R:�W��J�5� cQ*di���;ת���Sv�6�X�JY���y�=�j?0�k�� �����6��Bl_*7WX�b 6 rkX�Bp�(x�jJ�����KYz���pV��&g�<��
@@ -1,26 +0,0 @@
1
- name: Test
2
-
3
- on:
4
- push:
5
- branches:
6
- - master
7
-
8
- jobs:
9
- build:
10
-
11
- runs-on: ubuntu-latest
12
- strategy:
13
- matrix:
14
- ruby:
15
- - 2.6.x
16
- steps:
17
- - uses: actions/checkout@v1
18
- - name: Set up Ruby ${{ matrix.ruby }}
19
- uses: actions/setup-ruby@v1
20
- with:
21
- ruby-version: ${{ matrix.ruby }}
22
- - name: Build and test
23
- run: |
24
- gem install bundler
25
- bundle install --jobs 4 --retry 3
26
- SPEC_SCOPE=all bundle exec rake
data/.gitignore DELETED
@@ -1,6 +0,0 @@
1
- .DS_Store
2
- gems.locked
3
- pkg/*
4
- *.gem
5
- .bundle
6
- .yardoc
@@ -1 +0,0 @@
1
- ruby-2.6.5
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
@@ -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