ogn_client-ruby 0.2.6 → 0.3.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 +4 -4
- data/CHANGELOG.md +47 -23
- data/README.md +3 -11
- data/lib/ogn_client/version.rb +1 -1
- metadata +5 -26
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -4
- metadata.gz.sig +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c97bb85149747d1162932a44a9a307ae7209d88fa49c828f3d85d7cf83c0ac0
|
4
|
+
data.tar.gz: 948defcadad3d316abe0fc6f9a205a626773ebeea8a1c450b2f72a34f542c891
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8994918beb73a919d0680db3bf8e86c7295cf84cee732ecbec5fff70a582e791f02e950559443cd0c715763d7abb5fb6a0c7b72a50ce46dc943fd759e1b034a4
|
7
|
+
data.tar.gz: db5b3642587ebc5e89805e2e3f923e266e180c55c5ad2975b5f42b61d6f74fe0018f6d611c839a28f46a722b8e21e71132450a12699a0de0cab7d375ea4db5b8
|
data/CHANGELOG.md
CHANGED
@@ -2,41 +2,56 @@
|
|
2
2
|
|
3
3
|
Nothing so far
|
4
4
|
|
5
|
+
## 0.3.0
|
6
|
+
|
7
|
+
### Changes
|
8
|
+
* Drop certs
|
9
|
+
* Add action for trusted release
|
10
|
+
|
5
11
|
## 0.2.6
|
6
12
|
|
7
|
-
|
13
|
+
### Changes
|
14
|
+
* Update Ruby to 3.4
|
8
15
|
|
9
16
|
## 0.2.5
|
10
17
|
|
11
|
-
|
12
|
-
*
|
18
|
+
### Changes
|
19
|
+
* Skip live tests by default
|
20
|
+
* Update certificate
|
13
21
|
|
14
22
|
## 0.2.4
|
15
23
|
|
16
|
-
|
17
|
-
*
|
24
|
+
### Additions
|
25
|
+
* Add ogn2geojson
|
26
|
+
* Sign gem and add checksums
|
18
27
|
|
19
28
|
## 0.2.3
|
20
29
|
|
21
|
-
|
22
|
-
*
|
30
|
+
### Additions
|
31
|
+
* Add support for explicit message date
|
32
|
+
|
33
|
+
### Fixes
|
34
|
+
* Fix ogn2kml for larger tracks
|
23
35
|
|
24
36
|
## 0.2.2
|
25
37
|
|
26
|
-
|
38
|
+
### Additions
|
39
|
+
* Add example executables
|
27
40
|
* ognlogd
|
28
41
|
* ogn2kml
|
29
42
|
|
30
43
|
## 0.2.0
|
31
44
|
|
32
|
-
|
33
|
-
|
34
|
-
*
|
45
|
+
### Additions
|
46
|
+
* Support for receiver versions <= 0.2.6
|
47
|
+
* Renamed `Sender` to `SenderBeacon`
|
48
|
+
* Devided `Receiver` to `ReceiverBeacon` and `ReceiverStatus`
|
35
49
|
* `ReceiverStatus` is *not* available for receiver versions < 0.2.6
|
36
50
|
|
37
51
|
## 0.1.3
|
38
52
|
|
39
|
-
|
53
|
+
### Changes
|
54
|
+
* Renamed sender and receiver attributes
|
40
55
|
* `Sender#signal` -> `Sender#signal_quality`
|
41
56
|
* `Sender#power` -> `Sender#signal_power`
|
42
57
|
* `Receiver#signal` -> `Receiver#signal_quality`
|
@@ -45,9 +60,9 @@ Nothing so far
|
|
45
60
|
|
46
61
|
## 0.1.2
|
47
62
|
|
48
|
-
|
49
|
-
*
|
50
|
-
*
|
63
|
+
### Additions
|
64
|
+
* Support for receiver versions <= 0.2.5
|
65
|
+
* New sender and receiver attributes
|
51
66
|
* `Sender#power`
|
52
67
|
* `Receiver#voltage`
|
53
68
|
* `Receiver#amperage`
|
@@ -60,30 +75,39 @@ Nothing so far
|
|
60
75
|
* `Receiver#good_and_bad_senders`
|
61
76
|
* `Receiver#good_senders`
|
62
77
|
* `Receiver#bad_senders`
|
63
|
-
|
78
|
+
|
79
|
+
### Changes
|
80
|
+
* Faster message parsing
|
81
|
+
* Renamed receiver attributes
|
64
82
|
* `Receiver#manual_correction` -> `Receiver#rf_correction_manual`
|
65
83
|
* `Receiver#automatic_correction` -> `Receiver#rf_correction_automatic`
|
66
84
|
|
67
85
|
## 0.1.1
|
68
86
|
|
69
|
-
|
70
|
-
*
|
71
|
-
* convert raw messages to UTF-8 before parsing
|
72
|
-
* new sender and receiver attributes
|
87
|
+
### Additions
|
88
|
+
* New sender and receiver attributes
|
73
89
|
* `Sender#flight_level
|
74
90
|
* `Sender#flarm_software_version`
|
75
91
|
* `Sender#flarm_hardware_version`
|
76
92
|
* `Sender#flarm_id`
|
77
93
|
* `Receiver#manual_correction`
|
78
94
|
* `Receiver#automatic_correction`
|
79
|
-
*
|
95
|
+
* Verification of supported receiver version
|
96
|
+
|
97
|
+
### Changes
|
98
|
+
* Supported receiver versions <= 0.2.4
|
99
|
+
* Convert raw messages to UTF-8 before parsing
|
100
|
+
* Renamed message attribute
|
80
101
|
* `Message#speed` -> `Message#ground_speed`
|
81
|
-
|
102
|
+
|
103
|
+
### Removals
|
104
|
+
* Remove debug support and raise errors instead
|
82
105
|
|
83
106
|
## 0.1.0
|
84
107
|
|
108
|
+
### Additions
|
85
109
|
* OGN subscription
|
86
|
-
*
|
110
|
+
* Parser for senders, receivers and comments with attributes
|
87
111
|
* `Message#raw`
|
88
112
|
* `Message#callsign`
|
89
113
|
* `Message#receiver`
|
data/README.md
CHANGED
@@ -14,14 +14,6 @@ Thank you for supporting free and open-source software by sponsoring on [GitHub]
|
|
14
14
|
|
15
15
|
## Installation
|
16
16
|
|
17
|
-
### Security
|
18
|
-
|
19
|
-
This gem is [cryptographically signed](https://guides.rubygems.org/security/#using-gems) in order to assure it hasn't been tampered with. Unless already done, please add the author's public key as a trusted certificate now:
|
20
|
-
|
21
|
-
```
|
22
|
-
gem cert --add <(curl -Ls https://raw.github.com/svoop/ogn_client-ruby/master/certs/svoop.pem)
|
23
|
-
```
|
24
|
-
|
25
17
|
### Bundler
|
26
18
|
|
27
19
|
Add the following to the <tt>Gemfile</tt> or <tt>gems.rb</tt> of your [Bundler](https://bundler.io) powered Ruby project:
|
@@ -33,7 +25,7 @@ gem 'ogn_client-ruby', require: 'ogn_client'
|
|
33
25
|
And then install the bundle:
|
34
26
|
|
35
27
|
```
|
36
|
-
bundle install
|
28
|
+
bundle install
|
37
29
|
```
|
38
30
|
|
39
31
|
### Standalone
|
@@ -41,7 +33,7 @@ bundle install --trust-policy MediumSecurity
|
|
41
33
|
If you're only going to use [the executables](#executables):
|
42
34
|
|
43
35
|
```
|
44
|
-
gem install ogn_client-ruby
|
36
|
+
gem install ogn_client-ruby
|
45
37
|
```
|
46
38
|
|
47
39
|
## Usage
|
@@ -232,7 +224,7 @@ To install the development dependencies and then run the test suite:
|
|
232
224
|
bundle install
|
233
225
|
bundle exec rake # run tests once
|
234
226
|
bundle exec guard # run tests whenever files are modified
|
235
|
-
|
227
|
+
|
236
228
|
The test suite may run against live OGN data if you set the `SPEC_SCOPE` environment variable, by default, these tests are skipped.
|
237
229
|
|
238
230
|
```
|
data/lib/ogn_client/version.rb
CHANGED
metadata
CHANGED
@@ -1,34 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ogn_client-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sven Schwyn
|
8
8
|
bindir: exe
|
9
|
-
cert_chain:
|
10
|
-
-
|
11
|
-
-----BEGIN CERTIFICATE-----
|
12
|
-
MIIDODCCAiCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhydWJ5
|
13
|
-
L0RDPWJpdGNldGVyYS9EQz1jb20wHhcNMjQxMTIwMjExMDIwWhcNMjUxMTIwMjEx
|
14
|
-
MDIwWjAjMSEwHwYDVQQDDBhydWJ5L0RDPWJpdGNldGVyYS9EQz1jb20wggEiMA0G
|
15
|
-
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDcLg+IHjXYaUlTSU7R235lQKD8ZhEe
|
16
|
-
KMhoGlSUonZ/zo1OT3KXcqTCP1iMX743xYs6upEGALCWWwq+nxvlDdnWRjF3AAv7
|
17
|
-
ikC+Z2BEowjyeCCT/0gvn4ohKcR0JOzzRaIlFUVInlGSAHx2QHZ2N8ntf54lu7nd
|
18
|
-
L8CiDK8rClsY4JBNGOgH9UC81f+m61UUQuTLxyM2CXfAYkj/sGNTvFRJcNX+nfdC
|
19
|
-
hM9r2kH1+7wsa8yG7wJ2IkrzNACD8v84oE6qVusN8OLEMUI/NaEPVPbw2LUM149H
|
20
|
-
PVa0i729A4IhroNnFNmw4wOC93ARNbM1+LW36PLMmKjKudf5Exg8VmDVAgMBAAGj
|
21
|
-
dzB1MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBSfK8MtR62mQ6oN
|
22
|
-
yoX/VKJzFjLSVDAdBgNVHREEFjAUgRJydWJ5QGJpdGNldGVyYS5jb20wHQYDVR0S
|
23
|
-
BBYwFIEScnVieUBiaXRjZXRlcmEuY29tMA0GCSqGSIb3DQEBCwUAA4IBAQDSeB1x
|
24
|
-
8QK8F/ML37isgvwGiQxovDUqu6Sq14cQ1qE9y5prUBmL2AsDuCBpXXctcvamFqNC
|
25
|
-
PgfJtj7ZZcXmY0SfKCog7T1btkr6zYxPXpxwUqB45n0I6v5qc0UCNvMEfBzxlak5
|
26
|
-
VW7UMNlKD9qukeN55hxuLF2F/sLldMcHUo/ATgdV4zk1t3sK6A9+02wz5K5qfWdM
|
27
|
-
Mi+XWXmGd57uojk3RcIXNwBRRP4DTKcKgVXhuyHb7q1vjTXrS6bw1Ortu0KmWOIk
|
28
|
-
jTyRsT1gymASS2KHe+BaCTwD74GqO8q4woYLZgXnJ/PvgcFgY2FEi2Kn/sXLp4JE
|
29
|
-
boIgxQCMT+nxBHCD
|
30
|
-
-----END CERTIFICATE-----
|
31
|
-
date: 2024-12-26 00:00:00.000000000 Z
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
32
11
|
dependencies:
|
33
12
|
- !ruby/object:Gem::Dependency
|
34
13
|
name: ostruct
|
@@ -154,9 +133,9 @@ executables:
|
|
154
133
|
- ognlogd
|
155
134
|
extensions: []
|
156
135
|
extra_rdoc_files:
|
157
|
-
- README.md
|
158
136
|
- CHANGELOG.md
|
159
137
|
- LICENSE.txt
|
138
|
+
- README.md
|
160
139
|
files:
|
161
140
|
- CHANGELOG.md
|
162
141
|
- LICENSE.txt
|
@@ -203,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
203
182
|
- !ruby/object:Gem::Version
|
204
183
|
version: '0'
|
205
184
|
requirements: []
|
206
|
-
rubygems_version: 3.6.
|
185
|
+
rubygems_version: 3.6.9
|
207
186
|
specification_version: 4
|
208
187
|
summary: Subscriber and parser for APRS messages from OGN
|
209
188
|
test_files: []
|
checksums.yaml.gz.sig
DELETED
Binary file
|
data.tar.gz.sig
DELETED
metadata.gz.sig
DELETED