gpx 0.8.2 → 0.8.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 73e06b9476bcb99bfba6431fca25891846a88941
4
- data.tar.gz: c7b44986fbc47413feee9975f83a50ddd9100fa6
3
+ metadata.gz: 86ad86f9dc972c750fe2c628a6ce7632dcb7c524
4
+ data.tar.gz: 14a077ee15832b49966d8ce8e502b50ac57b9f15
5
5
  SHA512:
6
- metadata.gz: 00368da47e1de3b6379ac55b758c403035de545f89ebb1040cd5af802c5351ae09615554ecdd4195d43ca240ed7e5e5912df0b66237b8f1a7b9d03360121e3db
7
- data.tar.gz: 25fcae7c2c17bf40ad44b2f464baf4e1f682bcfdb58d4ca7ab6833b2cb154b2867caaecc7de9ae99d127f5ec3545df8b58bd130cd208d0a48ba75853d63f5867
6
+ metadata.gz: 2bdd32b6adbe34bb44e46950cbdf702ded02bbb511de2c8e10f2b4a9c43e9eaf0dae9ce1a90e8703e4eaf6a4dc9b541ed649ef77e8d18784ef18504042ce6454
7
+ data.tar.gz: 01378bd150ca0ada67590425282a50980e5966807c33c30af9f6acd2916154ce690ae515360fb57c6caf5e8624636596bc85926eea13ee6e713775394e2476a2
@@ -25,11 +25,11 @@ module GPX
25
25
  # multiple points (in this library, those points are instances of
26
26
  # TrackPoint). Each instance of this class has its own meta-data, including
27
27
  # low point, high point, and distance. Of course, each track references an
28
- # array of the segments that copmrise it, but additionally each track holds
28
+ # array of the segments that comprise it, but additionally each track holds
29
29
  # a reference to all of its points as one big array called "points".
30
30
  class Track < Base
31
- attr_reader :points, :bounds, :lowest_point, :highest_point, :distance, :moving_duration, :comment, :description
32
- attr_accessor :segments, :name, :gpx_file
31
+ attr_reader :points, :bounds, :lowest_point, :highest_point, :distance, :moving_duration
32
+ attr_accessor :segments, :name, :gpx_file, :description, :comment
33
33
 
34
34
  # Initialize a track from a XML::Node, or, if no :element option is
35
35
  # passed, initialize a blank Track object.
@@ -1,3 +1,3 @@
1
1
  module GPX
2
- VERSION = "0.8.2"
2
+ VERSION = "0.8.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gpx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillaume Dott
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-08-04 00:00:00.000000000 Z
13
+ date: 2017-01-05 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  version: '0'
140
140
  requirements: []
141
141
  rubyforge_project:
142
- rubygems_version: 2.4.5
142
+ rubygems_version: 2.4.8
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: A basic API for reading and writing GPX files.