postrunner 0.9.0 → 0.10.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/README.md +10 -10
- data/lib/postrunner/ActivitySummary.rb +6 -6
- data/lib/postrunner/version.rb +1 -1
- data/postrunner.gemspec +11 -11
- metadata +16 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a6a1f15eac9398548829e5217b1e0fff59df30e
|
4
|
+
data.tar.gz: 6a0e03028f0592f96680a24914cbd6997e072244
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 112581e21eeb8afdc533d6016cc65d4af74e7f1e32ba6fcda593fc9b96ac010471a15427dc7704f779cb408e7248165fda939398a250cf7c78e1f97f8bcb8133
|
7
|
+
data.tar.gz: 8e3648ddbd3c5bde15635b6ddb03772b278b3043c7c886c9e429b96f1cf2272a5c7d81738f61f950f6fa3f9b6a2b648527b55619c8e389e2433757a69f4657ca
|
data/README.md
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# PostRunner
|
2
2
|
|
3
3
|
PostRunner is an application to manage FIT files such as those
|
4
|
-
produced by Garmin products like the Forerunner 620 (FR620)
|
5
|
-
3
|
6
|
-
analyze the data. In addition to
|
7
|
-
|
8
|
-
heart rate variability (HRV)
|
9
|
-
orbit prediction (EPO) data on
|
10
|
-
It is an offline alternative to
|
11
|
-
|
12
|
-
systems as well.
|
4
|
+
produced by Garmin products like the Forerunner 620 (FR620),
|
5
|
+
Forerunner 25 (FR25), Fenix 3, Fenix 3HR and Fenix 5. It allows you to
|
6
|
+
import the files from the device and analyze the data. In addition to
|
7
|
+
the common features like plotting pace, heart rates, elevation and
|
8
|
+
other captured values it also provides a heart rate variability (HRV)
|
9
|
+
analysis. It can also update satellite orbit prediction (EPO) data on
|
10
|
+
the device to speed-up GPS fix times. It is an offline alternative to
|
11
|
+
Garmin Connect. The software has been developed and tested on Linux
|
12
|
+
but should work on other operating systems as well.
|
13
13
|
|
14
14
|
## Installation
|
15
15
|
|
@@ -99,7 +99,7 @@ command while you have your device mounted via USB.
|
|
99
99
|
$ postrunner update-gps
|
100
100
|
```
|
101
101
|
|
102
|
-
This was tested on the FR620 and will probably also work on the FR220.
|
102
|
+
This was tested on the FR620 and FR25 and will probably also work on the FR220.
|
103
103
|
Other devices may work, but you use this at your own risk. This
|
104
104
|
feature will download a file called EPO.BIN and copy it to
|
105
105
|
GARMIN/REMOTESW/EPO.BIN.
|
@@ -115,15 +115,15 @@ module PostRunner
|
|
115
115
|
local_value(session, 'avg_vertical_oscillation', '%.1f %s',
|
116
116
|
{ :metric => 'cm', :statute => 'in' }) ])
|
117
117
|
t.row([ 'Vertical Ratio:',
|
118
|
-
session.
|
119
|
-
"#{session.
|
118
|
+
session.avg_vertical_ratio ?
|
119
|
+
"#{session.avg_vertical_ratio}%" : '-' ])
|
120
120
|
t.row([ 'Avg. Ground Contact Time:',
|
121
121
|
session.avg_stance_time ?
|
122
122
|
"#{session.avg_stance_time.round} ms" : '-' ])
|
123
|
-
t.row([ 'Avg.
|
124
|
-
session.
|
125
|
-
"#{session.
|
126
|
-
"#{100.0 - session.
|
123
|
+
t.row([ 'Avg. Stance Time Balance:',
|
124
|
+
session.avg_stance_time_balance ?
|
125
|
+
"#{session.avg_stance_time_balance}% L / " +
|
126
|
+
"#{100.0 - session.avg_stance_time_balance}% R" : ';' ])
|
127
127
|
end
|
128
128
|
if @activity.sport == 'cycling'
|
129
129
|
t.row([ 'Avg. Cadence:',
|
data/lib/postrunner/version.rb
CHANGED
data/postrunner.gemspec
CHANGED
@@ -11,14 +11,14 @@ GEM_SPEC = Gem::Specification.new do |spec|
|
|
11
11
|
spec.summary = %q{Application to manage and analyze Garmin FIT files.}
|
12
12
|
spec.description = %q{PostRunner is an application to manage FIT files
|
13
13
|
such as those produced by Garmin products like the Forerunner 620 (FR620),
|
14
|
-
Fenix 3, Fenix 3HR, Fenix 5 (S and X). It allows you to
|
15
|
-
the device and analyze the data. In addition to the
|
16
|
-
plotting pace, heart rates, elevation and other captured
|
17
|
-
provides a heart rate variability (HRV) and sleep analysis. It
|
18
|
-
satellite orbit prediction (EPO) data on the device to
|
19
|
-
It is an offline alternative to Garmin Connect. The
|
20
|
-
developed and tested on Linux but should work on other
|
21
|
-
well.}
|
14
|
+
Forerunner 25 (FR25), Fenix 3, Fenix 3HR, Fenix 5 (S and X). It allows you to
|
15
|
+
import the files from the device and analyze the data. In addition to the
|
16
|
+
common features like plotting pace, heart rates, elevation and other captured
|
17
|
+
values it also provides a heart rate variability (HRV) and sleep analysis. It
|
18
|
+
can also update satellite orbit prediction (EPO) data on the device to
|
19
|
+
speed-up GPS fix times. It is an offline alternative to Garmin Connect. The
|
20
|
+
software has been developed and tested on Linux but should work on other
|
21
|
+
operating systems as well.}
|
22
22
|
spec.homepage = 'https://github.com/scrapper/postrunner'
|
23
23
|
spec.license = "GNU GPL version 2"
|
24
24
|
|
@@ -28,12 +28,12 @@ well.}
|
|
28
28
|
spec.require_paths = ["lib"]
|
29
29
|
spec.required_ruby_version = '>=2.0'
|
30
30
|
|
31
|
-
spec.add_dependency 'fit4ruby', '~>
|
31
|
+
spec.add_dependency 'fit4ruby', '~> 2.0.0'
|
32
32
|
spec.add_dependency 'perobs', '~> 4.0.0'
|
33
33
|
spec.add_dependency 'nokogiri', '~> 1.6'
|
34
34
|
|
35
35
|
spec.add_development_dependency 'bundler', '~> 1.6'
|
36
36
|
spec.add_development_dependency 'rake', '~> 0.9.6'
|
37
|
-
spec.add_development_dependency 'rspec', '~> 3.
|
38
|
-
spec.add_development_dependency 'yard', '~> 0.
|
37
|
+
spec.add_development_dependency 'rspec', '~> 3.6.0'
|
38
|
+
spec.add_development_dependency 'yard', '~> 0.9.12'
|
39
39
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: postrunner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Schlaeger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fit4ruby
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 2.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 2.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: perobs
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,39 +86,39 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 3.
|
89
|
+
version: 3.6.0
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 3.
|
96
|
+
version: 3.6.0
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: yard
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 0.
|
103
|
+
version: 0.9.12
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 0.
|
110
|
+
version: 0.9.12
|
111
111
|
description: |-
|
112
112
|
PostRunner is an application to manage FIT files
|
113
113
|
such as those produced by Garmin products like the Forerunner 620 (FR620),
|
114
|
-
Fenix 3, Fenix 3HR, Fenix 5 (S and X). It allows you to
|
115
|
-
the device and analyze the data. In addition to the
|
116
|
-
plotting pace, heart rates, elevation and other captured
|
117
|
-
provides a heart rate variability (HRV) and sleep analysis. It
|
118
|
-
satellite orbit prediction (EPO) data on the device to
|
119
|
-
It is an offline alternative to Garmin Connect. The
|
120
|
-
developed and tested on Linux but should work on other
|
121
|
-
well.
|
114
|
+
Forerunner 25 (FR25), Fenix 3, Fenix 3HR, Fenix 5 (S and X). It allows you to
|
115
|
+
import the files from the device and analyze the data. In addition to the
|
116
|
+
common features like plotting pace, heart rates, elevation and other captured
|
117
|
+
values it also provides a heart rate variability (HRV) and sleep analysis. It
|
118
|
+
can also update satellite orbit prediction (EPO) data on the device to
|
119
|
+
speed-up GPS fix times. It is an offline alternative to Garmin Connect. The
|
120
|
+
software has been developed and tested on Linux but should work on other
|
121
|
+
operating systems as well.
|
122
122
|
email:
|
123
123
|
- cs@taskjuggler.org
|
124
124
|
executables:
|