jeti-log 0.5.3 → 0.5.4
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/lib/jeti/log/data/composite_dataset_builder.rb +1 -2
- data/lib/jeti/log/data/rx_data.rb +1 -0
- data/lib/jeti/log/version.rb +1 -1
- data/spec/data/rx_data_spec.rb +17 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1dfad65e0307fbb1318b404174c905a79664d988
|
4
|
+
data.tar.gz: 6fd2bfbcd62dc4b0cf6600dcc475850dd5aca537
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba7fc270b1a9c168c8a302ea50503765f263d831016c2aea382bd700fb0749059fa20c91b36d83cdc016348360ef24c5cf92858b74736696e84ef75ebf48d14a
|
7
|
+
data.tar.gz: 3d8574cd5d985663799de5ebd6f3c05cd494460cfe51fb634aba1242fbe50e71b10430225ebf472e76810e78a5c9672599427fe8123a3ae69f67bdefd7d44b50
|
data/lib/jeti/log/version.rb
CHANGED
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Jeti::Log::Data::RxData do
|
4
|
+
|
5
|
+
subject { described_class.new(150, [7.89, 9, 8, 89]) }
|
6
|
+
|
7
|
+
its(:time) { should eql(150) }
|
8
|
+
|
9
|
+
its(:voltage) { should be_within(0.1).of(7.89) }
|
10
|
+
|
11
|
+
its(:antenna1) { should eql(9) }
|
12
|
+
|
13
|
+
its(:antenna2) { should eql(8) }
|
14
|
+
|
15
|
+
its(:quality) { should eql(89) }
|
16
|
+
|
17
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jeti-log
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Veys
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|
@@ -165,6 +165,7 @@ files:
|
|
165
165
|
- spec/data/mezon_data_spec.rb
|
166
166
|
- spec/data/mgps_data_spec.rb
|
167
167
|
- spec/data/mui_data_spec.rb
|
168
|
+
- spec/data/rx_data_spec.rb
|
168
169
|
- spec/data/tx_data_spec.rb
|
169
170
|
- spec/file_spec.rb
|
170
171
|
- spec/sample-data/1min-tx-rx.log
|
@@ -212,6 +213,7 @@ test_files:
|
|
212
213
|
- spec/data/mezon_data_spec.rb
|
213
214
|
- spec/data/mgps_data_spec.rb
|
214
215
|
- spec/data/mui_data_spec.rb
|
216
|
+
- spec/data/rx_data_spec.rb
|
215
217
|
- spec/data/tx_data_spec.rb
|
216
218
|
- spec/file_spec.rb
|
217
219
|
- spec/sample-data/1min-tx-rx.log
|