saml_idp_metadata 0.3.6 → 0.3.7

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: de1daef32c5452f226ebd22c6b1949138409069a8a11686b997827194f8e1ec4
4
- data.tar.gz: 0abb099e0a744dc2d757e13955adc740dd5ae86ed8c28631500a6d381cbf6501
3
+ metadata.gz: 374f1d2a77717d6f2f638144d2abf415c3b39b20909df9ce1a617656dd0ed0e5
4
+ data.tar.gz: 318959380f83f9a0478fbc19c0de854cc0739210fe30ee846d59399b90c7f40f
5
5
  SHA512:
6
- metadata.gz: 8c33d70068c40e43ff8f8874c7473afdf97d8f9d2b35a7ef17466da7dff36596da6515793433633e84086a9cce681a6620b163cff4b9ab287bdd0ab505f4120b
7
- data.tar.gz: b57b22593ad054fc569841afcad1d6f186416d27bdafb2ab3a64dd7ac65aa070d3fe56c39803c7df39e34de21af991c4e57668207c444b93c96614c4dc5b9915
6
+ metadata.gz: d03ffd39f84c6ac00d9ef005afbcc7d2ac8cde19e9975a75ae9f38a0c736fd653165b04c77281194489ea9c6aad1d8df92ab5da2612ed744ea974031c7fa0989
7
+ data.tar.gz: 032b3808cc9d2df554f318fd5da04a66475826a8841f415a24567a519b01b82bbd792f7dbb9608294c2d0c4f51a67fbf5821c12836f994bbc6419afba512056a
data/.circleci/config.yml CHANGED
@@ -2,15 +2,18 @@ version: 2.1
2
2
 
3
3
  executors:
4
4
  working_directory: /root/saml_idp_metadata
5
+ ruby_3_4:
6
+ docker:
7
+ - image: rubylang/ruby:3.4-dev-focal
8
+ ruby_3_3:
9
+ docker:
10
+ - image: rubylang/ruby:3.3-dev-focal
5
11
  ruby_3_2:
6
12
  docker:
7
13
  - image: rubylang/ruby:3.2-dev-focal
8
14
  ruby_3_1:
9
15
  docker:
10
16
  - image: rubylang/ruby:3.1-dev-focal
11
- ruby_3_0:
12
- docker:
13
- - image: rubylang/ruby:3.0-dev-focal
14
17
 
15
18
  commands:
16
19
  install_system_dependencies:
@@ -27,7 +30,7 @@ commands:
27
30
  - run:
28
31
  name: Bundle gems
29
32
  command: |
30
- gem install bundler -v 2.4.20 --no-document --force
33
+ gem install bundler -v 2.5.22 --no-document --force
31
34
  bundle install
32
35
 
33
36
  run_tests:
@@ -42,24 +45,30 @@ commands:
42
45
  path: coverage
43
46
 
44
47
  jobs:
45
- run_tests_on_ruby_3_2:
46
- executor: ruby_3_2
48
+ run_tests_on_ruby_3_4:
49
+ executor: ruby_3_4
47
50
  steps:
48
51
  - install_system_dependencies
49
52
  - checkout
50
53
  - bundle_gems
51
54
  - run_tests
52
-
53
- run_tests_on_ruby_3_1:
54
- executor: ruby_3_1
55
+ run_tests_on_ruby_3_3:
56
+ executor: ruby_3_3
57
+ steps:
58
+ - install_system_dependencies
59
+ - checkout
60
+ - bundle_gems
61
+ - run_tests
62
+ run_tests_on_ruby_3_2:
63
+ executor: ruby_3_2
55
64
  steps:
56
65
  - install_system_dependencies
57
66
  - checkout
58
67
  - bundle_gems
59
68
  - run_tests
60
69
 
61
- run_tests_on_ruby_3_0:
62
- executor: ruby_3_0
70
+ run_tests_on_ruby_3_1:
71
+ executor: ruby_3_1
63
72
  steps:
64
73
  - install_system_dependencies
65
74
  - checkout
@@ -70,6 +79,7 @@ workflows:
70
79
  version: 2
71
80
  test:
72
81
  jobs:
82
+ - run_tests_on_ruby_3_4
83
+ - run_tests_on_ruby_3_3
73
84
  - run_tests_on_ruby_3_2
74
85
  - run_tests_on_ruby_3_1
75
- - run_tests_on_ruby_3_0
@@ -9,9 +9,10 @@ jobs:
9
9
  matrix:
10
10
  ruby:
11
11
  # https://hub.docker.com/r/rubylang/ruby
12
- - '3.0-dev-focal'
13
12
  - '3.1-dev-focal'
14
13
  - '3.2-dev-focal'
14
+ - '3.3-dev-focal'
15
+ - '3.4-dev-focal'
15
16
  container:
16
17
  image: rubylang/ruby:${{ matrix.ruby }}
17
18
 
@@ -19,7 +20,7 @@ jobs:
19
20
  - uses: actions/checkout@master
20
21
  - name: Build and test
21
22
  run: |
22
- gem install bundler -v 2.4.20 --force
23
+ gem install bundler -v 2.5.22 --force
23
24
  bundle install
24
25
  bundle exec rubocop
25
26
  bundle exec rake
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.2.3
1
+ 3.3.7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.3.6](https://github.com/tknzk/saml_idp_metadata/tree/v0.3.6) (2024-05-28)
4
+
5
+ [Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.3.5...v0.3.6)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - bumpup [\#223](https://github.com/tknzk/saml_idp_metadata/pull/223) ([tknzk](https://github.com/tknzk))
10
+ - bundle update [\#222](https://github.com/tknzk/saml_idp_metadata/pull/222) ([tknzk](https://github.com/tknzk))
11
+ - ruby 3.2.3 [\#221](https://github.com/tknzk/saml_idp_metadata/pull/221) ([tknzk](https://github.com/tknzk))
12
+ - modified email [\#220](https://github.com/tknzk/saml_idp_metadata/pull/220) ([tknzk](https://github.com/tknzk))
13
+
3
14
  ## [v0.3.5](https://github.com/tknzk/saml_idp_metadata/tree/v0.3.5) (2023-10-02)
4
15
 
5
16
  [Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.3.4...v0.3.5)
data/Gemfile.lock CHANGED
@@ -1,101 +1,100 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- saml_idp_metadata (0.3.6)
4
+ saml_idp_metadata (0.3.7)
5
5
  activesupport (< 8)
6
+ rexml
6
7
 
7
8
  GEM
8
9
  remote: https://rubygems.org/
9
10
  specs:
10
- activesupport (7.1.3.3)
11
+ activesupport (7.2.2.1)
11
12
  base64
13
+ benchmark (>= 0.3)
12
14
  bigdecimal
13
- concurrent-ruby (~> 1.0, >= 1.0.2)
15
+ concurrent-ruby (~> 1.0, >= 1.3.1)
14
16
  connection_pool (>= 2.2.5)
15
17
  drb
16
18
  i18n (>= 1.6, < 2)
19
+ logger (>= 1.4.2)
17
20
  minitest (>= 5.1)
18
- mutex_m
19
- tzinfo (~> 2.0)
21
+ securerandom (>= 0.3)
22
+ tzinfo (~> 2.0, >= 2.0.5)
20
23
  ast (2.4.2)
21
24
  base64 (0.2.0)
22
- bigdecimal (3.1.8)
25
+ benchmark (0.4.0)
26
+ bigdecimal (3.1.9)
23
27
  coderay (1.1.3)
24
- concurrent-ruby (1.2.3)
25
- connection_pool (2.4.1)
26
- diff-lcs (1.5.1)
27
- docile (1.4.0)
28
+ concurrent-ruby (1.3.5)
29
+ connection_pool (2.5.0)
30
+ diff-lcs (1.6.0)
31
+ docile (1.4.1)
28
32
  drb (2.2.1)
29
- i18n (1.14.5)
33
+ i18n (1.14.7)
30
34
  concurrent-ruby (~> 1.0)
31
- json (2.7.2)
32
- language_server-protocol (3.17.0.3)
35
+ json (2.10.2)
36
+ language_server-protocol (3.17.0.4)
37
+ lint_roller (1.1.0)
38
+ logger (1.6.6)
33
39
  method_source (1.1.0)
34
- minitest (5.23.1)
35
- mutex_m (0.2.0)
36
- parallel (1.24.0)
37
- parser (3.3.1.0)
40
+ minitest (5.25.5)
41
+ parallel (1.26.3)
42
+ parser (3.3.7.1)
38
43
  ast (~> 2.4.1)
39
44
  racc
40
- pry (0.14.2)
45
+ pry (0.15.2)
41
46
  coderay (~> 1.1)
42
47
  method_source (~> 1.0)
43
- racc (1.8.0)
48
+ racc (1.8.1)
44
49
  rainbow (3.1.1)
45
50
  rake (13.2.1)
46
- regexp_parser (2.9.2)
47
- rexml (3.2.8)
48
- strscan (>= 3.0.9)
51
+ regexp_parser (2.10.0)
52
+ rexml (3.4.1)
49
53
  rspec (3.13.0)
50
54
  rspec-core (~> 3.13.0)
51
55
  rspec-expectations (~> 3.13.0)
52
56
  rspec-mocks (~> 3.13.0)
53
- rspec-core (3.13.0)
57
+ rspec-core (3.13.3)
54
58
  rspec-support (~> 3.13.0)
55
- rspec-expectations (3.13.0)
59
+ rspec-expectations (3.13.3)
56
60
  diff-lcs (>= 1.2.0, < 2.0)
57
61
  rspec-support (~> 3.13.0)
58
- rspec-mocks (3.13.1)
62
+ rspec-mocks (3.13.2)
59
63
  diff-lcs (>= 1.2.0, < 2.0)
60
64
  rspec-support (~> 3.13.0)
61
- rspec-support (3.13.1)
62
- rubocop (1.64.0)
65
+ rspec-support (3.13.2)
66
+ rubocop (1.74.0)
63
67
  json (~> 2.3)
64
- language_server-protocol (>= 3.17.0)
68
+ language_server-protocol (~> 3.17.0.2)
69
+ lint_roller (~> 1.1.0)
65
70
  parallel (~> 1.10)
66
71
  parser (>= 3.3.0.2)
67
72
  rainbow (>= 2.2.2, < 4.0)
68
- regexp_parser (>= 1.8, < 3.0)
69
- rexml (>= 3.2.5, < 4.0)
70
- rubocop-ast (>= 1.31.1, < 2.0)
73
+ regexp_parser (>= 2.9.3, < 3.0)
74
+ rubocop-ast (>= 1.38.0, < 2.0)
71
75
  ruby-progressbar (~> 1.7)
72
- unicode-display_width (>= 2.4.0, < 3.0)
73
- rubocop-ast (1.31.3)
76
+ unicode-display_width (>= 2.4.0, < 4.0)
77
+ rubocop-ast (1.39.0)
74
78
  parser (>= 3.3.1.0)
75
- rubocop-capybara (2.20.0)
76
- rubocop (~> 1.41)
77
- rubocop-factory_bot (2.25.1)
78
- rubocop (~> 1.41)
79
- rubocop-rake (0.6.0)
80
- rubocop (~> 1.0)
81
- rubocop-rspec (2.29.2)
82
- rubocop (~> 1.40)
83
- rubocop-capybara (~> 2.17)
84
- rubocop-factory_bot (~> 2.22)
85
- rubocop-rspec_rails (~> 2.28)
86
- rubocop-rspec_rails (2.28.3)
87
- rubocop (~> 1.40)
79
+ rubocop-rake (0.7.1)
80
+ lint_roller (~> 1.1)
81
+ rubocop (>= 1.72.1)
82
+ rubocop-rspec (3.5.0)
83
+ lint_roller (~> 1.1)
84
+ rubocop (~> 1.72, >= 1.72.1)
88
85
  ruby-progressbar (1.13.0)
86
+ securerandom (0.4.1)
89
87
  simplecov (0.22.0)
90
88
  docile (~> 1.1)
91
89
  simplecov-html (~> 0.11)
92
90
  simplecov_json_formatter (~> 0.1)
93
- simplecov-html (0.12.3)
91
+ simplecov-html (0.13.1)
94
92
  simplecov_json_formatter (0.1.4)
95
- strscan (3.1.0)
96
93
  tzinfo (2.0.6)
97
94
  concurrent-ruby (~> 1.0)
98
- unicode-display_width (2.5.0)
95
+ unicode-display_width (3.1.4)
96
+ unicode-emoji (~> 4.0, >= 4.0.4)
97
+ unicode-emoji (4.0.4)
99
98
 
100
99
  PLATFORMS
101
100
  ruby
@@ -113,4 +112,4 @@ DEPENDENCIES
113
112
  simplecov
114
113
 
115
114
  BUNDLED WITH
116
- 2.4.20
115
+ 2.5.22
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SamlIdpMetadata
4
- VERSION = '0.3.6'
4
+ VERSION = '0.3.7'
5
5
  end
@@ -26,6 +26,7 @@ Gem::Specification.new do |spec|
26
26
  spec.require_paths = ['lib']
27
27
 
28
28
  spec.add_dependency 'activesupport', '< 8'
29
+ spec.add_dependency 'rexml'
29
30
 
30
31
  spec.add_development_dependency 'bundler', '~> 2'
31
32
  spec.add_development_dependency 'pry'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: saml_idp_metadata
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - tknzk
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-28 00:00:00.000000000 Z
11
+ date: 2025-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - "<"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rexml
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: bundler
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -189,7 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
203
  - !ruby/object:Gem::Version
190
204
  version: '0'
191
205
  requirements: []
192
- rubygems_version: 3.4.19
206
+ rubygems_version: 3.5.22
193
207
  signing_key:
194
208
  specification_version: 4
195
209
  summary: SAML IdP metadata.xml parser