gpx 1.2.0 → 1.2.1

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
  SHA256:
3
- metadata.gz: e058dd4105b07060879b8084b796f964ca48d9ca357a47fe698fa645df8b0599
4
- data.tar.gz: 0525a329af4a8e6ab2e10a40de6de388a708fb806731b72e2a6686da1824b3dc
3
+ metadata.gz: 1704cc48e6cea922a21e6dbea9514f3ac3841be047ec7f407f8fd18ca55de0e5
4
+ data.tar.gz: d6464e8ce4be75e1117b3742c33dad6b4831cfe1f4a31e23e1086ee2be66fb02
5
5
  SHA512:
6
- metadata.gz: 463d441112bca4747ea4db699281ebcd42705706abb0f703c351aea732d5935ceffee3ba84c3484d1afaf84e9e116f6740b3973bd907ad6f6bcad71a9da05a59
7
- data.tar.gz: ff34c0fdfbf7661af840b757ef4c2b8bcb55419131f76dd8a03a43ee73398f408ccdb47b3a7d273b2409dd65410dfeb0de4a6acd5928efd999cb2ee4dc650f2f
6
+ metadata.gz: 63e429a9c7302116c84dcbb9cd0ca819c377683e28415b216fb5b5c5af0a7cbe7057a910b299d5537be6346ee42969436fc0873ec1442d0f9475777d4b13ea57
7
+ data.tar.gz: 713c817c2b1162c14ef2b97df643e3c9c9010384c4ff89c74b533ad05aca2eacd0a6987cf7992beb415c87cb12fc597c7e2e7ee756467a2e1c6be3dc33489eb4
@@ -21,7 +21,7 @@ jobs:
21
21
  strategy:
22
22
  fail-fast: true
23
23
  matrix:
24
- ruby-version: ['2.7', '3.0', '3.1', '3.2']
24
+ ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
25
25
 
26
26
  steps:
27
27
  - uses: actions/checkout@v4
@@ -29,7 +29,7 @@ jobs:
29
29
  # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
30
30
  # change this to (see https://github.com/ruby/setup-ruby#versioning):
31
31
  # uses: ruby/setup-ruby@v1
32
- uses: ruby/setup-ruby@v1.159.0
32
+ uses: ruby/setup-ruby@v1
33
33
  with:
34
34
  ruby-version: ${{ matrix.ruby-version }}
35
35
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [1.2.1] - 2025-02-27
2
+
3
+ * Changes dependencies, as `CSV` gem was loaded from the standard library, but will no longer be part of the default gems with Ruby 3.4 (#57 via @simonneutert)
4
+ * Rubocop fix (#58 via @niborg)
5
+
1
6
  ## [1.2.0] - 2024-07-26
2
7
 
3
8
  * Adds ability to address various GeoJSON properties when performing GeoJSON to GPX conversion. (#53 via @niborg)
@@ -5,8 +10,8 @@
5
10
 
6
11
  ## [1.1.1] - 2023-05-19
7
12
 
8
- * updates CI, minimal Ruby version now 2.7, updates tooling like rubocop and GitHub actions
9
- * adds support for Ruby 3.2
13
+ * updates CI, minimal Ruby version now 2.7, updates tooling like rubocop and GitHub actions (#54 via @simonneutert)
14
+ * adds support for Ruby 3.2 (#52 via @simonneutert)
10
15
  * adds UPGRADING.md to document changes between versions
11
16
 
12
17
  ## [1.1.0] - 2023-05-18
data/gpx.gemspec CHANGED
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.require_paths = ['lib']
20
20
 
21
21
  s.homepage = 'http://www.github.com/dougfales/gpx'
22
+ s.add_dependency 'csv'
22
23
  s.add_dependency 'nokogiri', '~>1.7'
23
24
  s.add_dependency 'rake'
24
25
  s.add_development_dependency 'bundler'
data/lib/gpx/route.rb CHANGED
@@ -20,7 +20,7 @@ module GPX
20
20
  end
21
21
  else
22
22
  @points = opts[:points] || []
23
- @name = (opts[:name])
23
+ @name = opts[:name]
24
24
  end
25
25
  end
26
26
 
data/lib/gpx/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GPX
4
- VERSION = "1.2.0"
4
+ VERSION = "1.2.1"
5
5
  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: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillaume Dott
@@ -10,8 +10,22 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-07-28 00:00:00.000000000 Z
13
+ date: 2025-02-27 00:00:00.000000000 Z
14
14
  dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: csv
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
15
29
  - !ruby/object:Gem::Dependency
16
30
  name: nokogiri
17
31
  requirement: !ruby/object:Gem::Requirement