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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c344ac78a38ac4d14859692ae0841cf6e7bee43bc8e731cb5b527dc17fe18815
4
- data.tar.gz: 4175f1fdffd38d1186d0dafaba1c456d5d624aca28e1fc7dc07c507b910def64
3
+ metadata.gz: 2ae1a7a4159d716b936fc4480ea4b4c6a9f9c80a20e824209715d694007a55c4
4
+ data.tar.gz: 57e48dad5ff718ef31a5b9aeaf37702945488644b5ca368bab4d1cb70bed1011
5
5
  SHA512:
6
- metadata.gz: b1aa6f361017f13c102cc6d121db3c1c890d68dbffe0159c107a0b1c8a851210d8f71f6c2d334c2aed59269d5b667795bb5e534ad580d955f88526f7c78c69ff
7
- data.tar.gz: b47568b900ddfd64dc5e092eed4dd367b7ea9f024d26c3391f2c47639ba93a1fb3b17b6cb74b6bc3486592b70747e3096c80b84d3361b22a367b9640abe50f86
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 2024-11-08 08:40:05 UTC using RuboCop version 1.68.0.
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: 3
17
- # Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
18
- # AllowedMethods: refine
19
- Metrics/BlockLength:
20
- Max: 40
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
@@ -10,4 +10,7 @@ gem "pry"
10
10
  gem "rake"
11
11
  gem "rspec"
12
12
  gem "rubocop"
13
+ gem "rubocop-performance"
14
+ gem "rubocop-rake"
15
+ gem "rubocop-rspec"
13
16
  gem "xml-c14n"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ogc
4
4
  module Gml
5
- VERSION = "1.0.3"
5
+ VERSION = "1.0.4"
6
6
  end
7
7
  end
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.add_runtime_dependency "lutaml-model", "~> 0.3.10"
35
- spec.add_runtime_dependency "nokogiri"
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.3
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: 2024-11-08 00:00:00.000000000 Z
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.3.10
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.3.10
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
- post_install_message:
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.3.27
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: []