postrunner 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 30fc3ab83ce783076286638ede5faf67d2b5adbf
4
- data.tar.gz: 465e09b0a7dac4cfdbcb129886f50afae1802680
3
+ metadata.gz: 0a6a1f15eac9398548829e5217b1e0fff59df30e
4
+ data.tar.gz: 6a0e03028f0592f96680a24914cbd6997e072244
5
5
  SHA512:
6
- metadata.gz: aa31ebe5811736bbcba8324d54a0dbb0bd4b19435544471236aac7563ad623002e5c4c2f7cec6e0095da7dfabbb6bdd25f10637cf88905a30d7dc35be6a2f459
7
- data.tar.gz: 801afc538448f0615c3d2095559f6fb945dd14cabeb3d55d3c1faa8c323d49e38522edca58ca6b44572cb79c332ae78bb8c4dbf1c22e224e4d3bf32996e8079e
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) and Fenix
5
- 3 or Fenix 3HR. It allows you to import the files from the device and
6
- analyze the data. In addition to the common features like plotting pace,
7
- heart rates, elevation and other captured values it also provides a
8
- heart rate variability (HRV) analysis. It can also update satellite
9
- orbit prediction (EPO) data on the device to speed-up GPS fix times.
10
- It is an offline alternative to Garmin Connect. The software has been
11
- developed and tested on Linux but should work on other operating
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.vertical_ratio ?
119
- "#{session.vertical_ratio}%" : '-' ])
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. Ground Contact Time Balance:',
124
- session.avg_gct_balance ?
125
- "#{session.avg_gct_balance}% L / " +
126
- "#{100.0 - session.avg_gct_balance}% R" : ';' ])
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:',
@@ -11,5 +11,5 @@
11
11
  #
12
12
 
13
13
  module PostRunner
14
- VERSION = '0.9.0'
14
+ VERSION = '0.10.0'
15
15
  end
@@ -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 import the files from
15
- the device and analyze the data. In addition to the common features like
16
- plotting pace, heart rates, elevation and other captured values it also
17
- provides a heart rate variability (HRV) and sleep analysis. It can also update
18
- satellite orbit prediction (EPO) data on the device to speed-up GPS fix times.
19
- It is an offline alternative to Garmin Connect. The software has been
20
- developed and tested on Linux but should work on other operating systems as
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', '~> 1.6.1'
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.4.1'
38
- spec.add_development_dependency 'yard', '~> 0.8.7'
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.9.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: 2017-11-12 00:00:00.000000000 Z
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: 1.6.1
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: 1.6.1
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.4.1
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.4.1
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.8.7
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.8.7
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 import the files from
115
- the device and analyze the data. In addition to the common features like
116
- plotting pace, heart rates, elevation and other captured values it also
117
- provides a heart rate variability (HRV) and sleep analysis. It can also update
118
- satellite orbit prediction (EPO) data on the device to speed-up GPS fix times.
119
- It is an offline alternative to Garmin Connect. The software has been
120
- developed and tested on Linux but should work on other operating systems as
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: