This repository was archived by the owner on Mar 2, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnotam.gemspec
More file actions
51 lines (43 loc) · 1.66 KB
/
Copy pathnotam.gemspec
File metadata and controls
51 lines (43 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
# frozen_string_literal: true
require_relative "lib/notam/version"
Gem::Specification.new do |spec|
spec.name = "notam"
spec.version = NOTAM::VERSION
spec.summary = 'Parser for NOTAM (Notice to Air Missions) messages'
spec.description = <<~END
Parser for NOTAM (Notice to Air Missions) messages in Ruby.
END
spec.authors = ['Sven Schwyn']
spec.email = ['ruby@bitcetera.com']
spec.homepage = 'https://github.com/svoop/notam'
spec.license = 'MIT'
spec.metadata = {
'homepage_uri' => spec.homepage,
'changelog_uri' => 'https://github.com/svoop/notam/blob/main/CHANGELOG.md',
'source_code_uri' => 'https://github.com/svoop/notam',
'documentation_uri' => 'https://www.rubydoc.info/gems/notam',
'bug_tracker_uri' => 'https://github.com/svoop/notam/issues'
}
spec.files = Dir['lib/**/*']
spec.require_paths = %w(lib)
spec.extra_rdoc_files = Dir['README.md', 'CHANGELOG.md', 'LICENSE.txt']
spec.rdoc_options += [
'--title', 'NOTAM Parser',
'--main', 'README.md',
'--line-numbers',
'--inline-source',
'--quiet'
]
spec.required_ruby_version = '>= 3.0.0'
spec.add_runtime_dependency 'aixm', '~> 1', '>= 1.3.2'
spec.add_runtime_dependency 'bigdecimal', '~> 3'
spec.add_runtime_dependency 'i18n', '~> 1'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'debug'
spec.add_development_dependency 'minitest'
spec.add_development_dependency 'minitest-mock'
spec.add_development_dependency 'minitest-flash'
spec.add_development_dependency 'guard'
spec.add_development_dependency 'guard-minitest'
spec.add_development_dependency 'yard'
end