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 +4 -4
- data/.github/workflows/ruby.yml +2 -2
- data/CHANGELOG.md +7 -2
- data/gpx.gemspec +1 -0
- data/lib/gpx/route.rb +1 -1
- data/lib/gpx/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1704cc48e6cea922a21e6dbea9514f3ac3841be047ec7f407f8fd18ca55de0e5
|
4
|
+
data.tar.gz: d6464e8ce4be75e1117b3742c33dad6b4831cfe1f4a31e23e1086ee2be66fb02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63e429a9c7302116c84dcbb9cd0ca819c377683e28415b216fb5b5c5af0a7cbe7057a910b299d5537be6346ee42969436fc0873ec1442d0f9475777d4b13ea57
|
7
|
+
data.tar.gz: 713c817c2b1162c14ef2b97df643e3c9c9010384c4ff89c74b533ad05aca2eacd0a6987cf7992beb415c87cb12fc597c7e2e7ee756467a2e1c6be3dc33489eb4
|
data/.github/workflows/ruby.yml
CHANGED
@@ -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
|
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
data/lib/gpx/route.rb
CHANGED
data/lib/gpx/version.rb
CHANGED
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.
|
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:
|
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
|