ogc-gml 1.0.3 → 1.0.4
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/.rubocop.yml +10 -0
- data/.rubocop_todo.yml +10 -6
- data/Gemfile +3 -0
- data/lib/ogc/gml/version.rb +1 -1
- data/ogc-gml.gemspec +3 -2
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ae1a7a4159d716b936fc4480ea4b4c6a9f9c80a20e824209715d694007a55c4
|
4
|
+
data.tar.gz: 57e48dad5ff718ef31a5b9aeaf37702945488644b5ca368bab4d1cb70bed1011
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b4f3c386f2183e9ca1961a2fc6c4df5edec14603287ec899e68986448ff21841f5841f7f3bf6e6a0db6c301ba2147787599d3a63b9333e1506bbe572137e7dc
|
7
|
+
data.tar.gz: 85754d659e5924121b3e0966f40970915266c39e2beb9125494eba9616fb0ea18f080ad46bbd9fb098c6c1e9e2ed2d672dbc2dc5767dca334651379b8c5d758f
|
data/.rubocop.yml
CHANGED
@@ -1,10 +1,20 @@
|
|
1
1
|
inherit_from: .rubocop_todo.yml
|
2
2
|
|
3
|
+
plugins:
|
4
|
+
- rubocop-performance
|
5
|
+
- rubocop-rake
|
6
|
+
- rubocop-rspec
|
7
|
+
|
3
8
|
AllCops:
|
4
9
|
TargetRubyVersion: 3.0
|
10
|
+
NewCops: enable
|
11
|
+
Exclude:
|
12
|
+
- 'vendor/**/*'
|
13
|
+
- 'Gemfile'
|
5
14
|
|
6
15
|
Style/StringLiterals:
|
7
16
|
EnforcedStyle: double_quotes
|
8
17
|
|
9
18
|
Style/StringLiteralsInInterpolation:
|
10
19
|
EnforcedStyle: double_quotes
|
20
|
+
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2025-03-19 18:08:26 UTC using RuboCop version 1.74.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -13,11 +13,15 @@ Gemspec/RequiredRubyVersion:
|
|
13
13
|
Exclude:
|
14
14
|
- 'ogc-gml.gemspec'
|
15
15
|
|
16
|
-
# Offense count:
|
17
|
-
# Configuration parameters:
|
18
|
-
|
19
|
-
|
20
|
-
|
16
|
+
# Offense count: 12
|
17
|
+
# Configuration parameters: CountAsOne.
|
18
|
+
RSpec/ExampleLength:
|
19
|
+
Max: 10
|
20
|
+
|
21
|
+
# Offense count: 2
|
22
|
+
RSpec/RepeatedDescription:
|
23
|
+
Exclude:
|
24
|
+
- 'spec/ogc/gml/polygon_spec.rb'
|
21
25
|
|
22
26
|
# Offense count: 323
|
23
27
|
# Configuration parameters: AllowedConstants.
|
data/Gemfile
CHANGED
data/lib/ogc/gml/version.rb
CHANGED
data/ogc-gml.gemspec
CHANGED
@@ -31,6 +31,7 @@ Gem::Specification.new do |spec|
|
|
31
31
|
|
32
32
|
spec.required_ruby_version = ">= 2.7.0"
|
33
33
|
|
34
|
-
spec.
|
35
|
-
spec.
|
34
|
+
spec.add_dependency "lutaml-model", "~> 0.7"
|
35
|
+
spec.add_dependency "nokogiri"
|
36
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
36
37
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ogc-gml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lutaml-model
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: '0.7'
|
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: 0.
|
26
|
+
version: '0.7'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: nokogiri
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -439,7 +439,8 @@ metadata:
|
|
439
439
|
homepage_uri: https://github.com/lutaml/ogc-gml
|
440
440
|
source_code_uri: https://github.com/lutaml/ogc-gml
|
441
441
|
changelog_uri: https://github.com/lutaml/ogc-gml/releases
|
442
|
-
|
442
|
+
rubygems_mfa_required: 'true'
|
443
|
+
post_install_message:
|
443
444
|
rdoc_options: []
|
444
445
|
require_paths:
|
445
446
|
- lib
|
@@ -454,8 +455,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
454
455
|
- !ruby/object:Gem::Version
|
455
456
|
version: '0'
|
456
457
|
requirements: []
|
457
|
-
rubygems_version: 3.
|
458
|
-
signing_key:
|
458
|
+
rubygems_version: 3.5.22
|
459
|
+
signing_key:
|
459
460
|
specification_version: 4
|
460
461
|
summary: OGC GML data model parser
|
461
462
|
test_files: []
|