atmospheric 0.1.0
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 +7 -0
- data/LICENSE.txt +25 -0
- data/README.adoc +97 -0
- data/lib/atmospheric/isa.rb +350 -0
- data/lib/atmospheric/version.rb +5 -0
- data/lib/atmospheric.rb +9 -0
- data/spec/fixtures/iso-2533-1975-table5.yaml +18297 -0
- data/spec/fixtures/iso-2533-1975-table6.yaml +18307 -0
- data/spec/fixtures/iso-2533-1975-table7.yaml +16265 -0
- metadata +82 -0
metadata
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: atmospheric
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ribose Inc.
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-02-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '13.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '13.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rspec
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.0'
|
41
|
+
description: Library to calculate values for the International Standard Atmosphere
|
42
|
+
(ISA) defined in ISO 2533:1975 and ICAO 7488/3 1994
|
43
|
+
email:
|
44
|
+
- open.source@ribose.com
|
45
|
+
executables: []
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files:
|
48
|
+
- README.adoc
|
49
|
+
- LICENSE.txt
|
50
|
+
files:
|
51
|
+
- LICENSE.txt
|
52
|
+
- README.adoc
|
53
|
+
- lib/atmospheric.rb
|
54
|
+
- lib/atmospheric/isa.rb
|
55
|
+
- lib/atmospheric/version.rb
|
56
|
+
- spec/fixtures/iso-2533-1975-table5.yaml
|
57
|
+
- spec/fixtures/iso-2533-1975-table6.yaml
|
58
|
+
- spec/fixtures/iso-2533-1975-table7.yaml
|
59
|
+
homepage: https://github.com/metanorma/atmospheric
|
60
|
+
licenses:
|
61
|
+
- BSD-2-Clause
|
62
|
+
metadata: {}
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: 2.5.0
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubygems_version: 3.4.10
|
79
|
+
signing_key:
|
80
|
+
specification_version: 4
|
81
|
+
summary: Library to calculate values for the International Standard Atmosphere (ISA)
|
82
|
+
test_files: []
|