saml_idp_metadata 0.3.5 → 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 +4 -4
- data/.circleci/config.yml +22 -12
- data/.github/workflows/ruby.yml +3 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +20 -0
- data/Gemfile.lock +66 -54
- data/lib/saml_idp_metadata/version.rb +1 -1
- data/saml_idp_metadata.gemspec +2 -1
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 374f1d2a77717d6f2f638144d2abf415c3b39b20909df9ce1a617656dd0ed0e5
|
4
|
+
data.tar.gz: 318959380f83f9a0478fbc19c0de854cc0739210fe30ee846d59399b90c7f40f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
|
-
|
46
|
-
executor:
|
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
|
-
|
54
|
-
|
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
|
-
|
62
|
-
executor:
|
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
|
data/.github/workflows/ruby.yml
CHANGED
@@ -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.
|
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.
|
1
|
+
3.3.7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
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
|
+
|
14
|
+
## [v0.3.5](https://github.com/tknzk/saml_idp_metadata/tree/v0.3.5) (2023-10-02)
|
15
|
+
|
16
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.3.4...v0.3.5)
|
17
|
+
|
18
|
+
**Merged pull requests:**
|
19
|
+
|
20
|
+
- bumpup [\#219](https://github.com/tknzk/saml_idp_metadata/pull/219) ([tknzk](https://github.com/tknzk))
|
21
|
+
- Bundle update [\#218](https://github.com/tknzk/saml_idp_metadata/pull/218) ([tknzk](https://github.com/tknzk))
|
22
|
+
|
3
23
|
## [v0.3.4](https://github.com/tknzk/saml_idp_metadata/tree/v0.3.4) (2023-06-07)
|
4
24
|
|
5
25
|
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.3.3...v0.3.4)
|
data/Gemfile.lock
CHANGED
@@ -1,88 +1,100 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
saml_idp_metadata (0.3.
|
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.
|
11
|
-
|
11
|
+
activesupport (7.2.2.1)
|
12
|
+
base64
|
13
|
+
benchmark (>= 0.3)
|
14
|
+
bigdecimal
|
15
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
16
|
+
connection_pool (>= 2.2.5)
|
17
|
+
drb
|
12
18
|
i18n (>= 1.6, < 2)
|
19
|
+
logger (>= 1.4.2)
|
13
20
|
minitest (>= 5.1)
|
14
|
-
|
21
|
+
securerandom (>= 0.3)
|
22
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
15
23
|
ast (2.4.2)
|
16
|
-
base64 (0.
|
24
|
+
base64 (0.2.0)
|
25
|
+
benchmark (0.4.0)
|
26
|
+
bigdecimal (3.1.9)
|
17
27
|
coderay (1.1.3)
|
18
|
-
concurrent-ruby (1.
|
19
|
-
|
20
|
-
|
21
|
-
|
28
|
+
concurrent-ruby (1.3.5)
|
29
|
+
connection_pool (2.5.0)
|
30
|
+
diff-lcs (1.6.0)
|
31
|
+
docile (1.4.1)
|
32
|
+
drb (2.2.1)
|
33
|
+
i18n (1.14.7)
|
22
34
|
concurrent-ruby (~> 1.0)
|
23
|
-
json (2.
|
24
|
-
language_server-protocol (3.17.0.
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
35
|
+
json (2.10.2)
|
36
|
+
language_server-protocol (3.17.0.4)
|
37
|
+
lint_roller (1.1.0)
|
38
|
+
logger (1.6.6)
|
39
|
+
method_source (1.1.0)
|
40
|
+
minitest (5.25.5)
|
41
|
+
parallel (1.26.3)
|
42
|
+
parser (3.3.7.1)
|
29
43
|
ast (~> 2.4.1)
|
30
44
|
racc
|
31
|
-
pry (0.
|
45
|
+
pry (0.15.2)
|
32
46
|
coderay (~> 1.1)
|
33
47
|
method_source (~> 1.0)
|
34
|
-
racc (1.
|
48
|
+
racc (1.8.1)
|
35
49
|
rainbow (3.1.1)
|
36
|
-
rake (13.
|
37
|
-
regexp_parser (2.
|
38
|
-
rexml (3.
|
39
|
-
rspec (3.
|
40
|
-
rspec-core (~> 3.
|
41
|
-
rspec-expectations (~> 3.
|
42
|
-
rspec-mocks (~> 3.
|
43
|
-
rspec-core (3.
|
44
|
-
rspec-support (~> 3.
|
45
|
-
rspec-expectations (3.
|
50
|
+
rake (13.2.1)
|
51
|
+
regexp_parser (2.10.0)
|
52
|
+
rexml (3.4.1)
|
53
|
+
rspec (3.13.0)
|
54
|
+
rspec-core (~> 3.13.0)
|
55
|
+
rspec-expectations (~> 3.13.0)
|
56
|
+
rspec-mocks (~> 3.13.0)
|
57
|
+
rspec-core (3.13.3)
|
58
|
+
rspec-support (~> 3.13.0)
|
59
|
+
rspec-expectations (3.13.3)
|
46
60
|
diff-lcs (>= 1.2.0, < 2.0)
|
47
|
-
rspec-support (~> 3.
|
48
|
-
rspec-mocks (3.
|
61
|
+
rspec-support (~> 3.13.0)
|
62
|
+
rspec-mocks (3.13.2)
|
49
63
|
diff-lcs (>= 1.2.0, < 2.0)
|
50
|
-
rspec-support (~> 3.
|
51
|
-
rspec-support (3.
|
52
|
-
rubocop (1.
|
53
|
-
base64 (~> 0.1.1)
|
64
|
+
rspec-support (~> 3.13.0)
|
65
|
+
rspec-support (3.13.2)
|
66
|
+
rubocop (1.74.0)
|
54
67
|
json (~> 2.3)
|
55
|
-
language_server-protocol (
|
68
|
+
language_server-protocol (~> 3.17.0.2)
|
69
|
+
lint_roller (~> 1.1.0)
|
56
70
|
parallel (~> 1.10)
|
57
|
-
parser (>= 3.
|
71
|
+
parser (>= 3.3.0.2)
|
58
72
|
rainbow (>= 2.2.2, < 4.0)
|
59
|
-
regexp_parser (>=
|
60
|
-
|
61
|
-
rubocop-ast (>= 1.28.1, < 2.0)
|
73
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
74
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
62
75
|
ruby-progressbar (~> 1.7)
|
63
|
-
unicode-display_width (>= 2.4.0, <
|
64
|
-
rubocop-ast (1.
|
65
|
-
parser (>= 3.
|
66
|
-
rubocop-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
rubocop (~> 1.
|
72
|
-
rubocop-rspec (2.24.1)
|
73
|
-
rubocop (~> 1.33)
|
74
|
-
rubocop-capybara (~> 2.17)
|
75
|
-
rubocop-factory_bot (~> 2.22)
|
76
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
77
|
+
rubocop-ast (1.39.0)
|
78
|
+
parser (>= 3.3.1.0)
|
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)
|
76
85
|
ruby-progressbar (1.13.0)
|
86
|
+
securerandom (0.4.1)
|
77
87
|
simplecov (0.22.0)
|
78
88
|
docile (~> 1.1)
|
79
89
|
simplecov-html (~> 0.11)
|
80
90
|
simplecov_json_formatter (~> 0.1)
|
81
|
-
simplecov-html (0.
|
91
|
+
simplecov-html (0.13.1)
|
82
92
|
simplecov_json_formatter (0.1.4)
|
83
93
|
tzinfo (2.0.6)
|
84
94
|
concurrent-ruby (~> 1.0)
|
85
|
-
unicode-display_width (
|
95
|
+
unicode-display_width (3.1.4)
|
96
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
97
|
+
unicode-emoji (4.0.4)
|
86
98
|
|
87
99
|
PLATFORMS
|
88
100
|
ruby
|
@@ -100,4 +112,4 @@ DEPENDENCIES
|
|
100
112
|
simplecov
|
101
113
|
|
102
114
|
BUNDLED WITH
|
103
|
-
2.
|
115
|
+
2.5.22
|
data/saml_idp_metadata.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.required_ruby_version = '>= 3.0.0', '< 4'
|
10
10
|
spec.version = SamlIdpMetadata::VERSION
|
11
11
|
spec.authors = ['tknzk']
|
12
|
-
spec.email = ['
|
12
|
+
spec.email = ['info@tknzk.dev']
|
13
13
|
|
14
14
|
spec.summary = 'SAML IdP metadata.xml parser'
|
15
15
|
spec.description = 'SAML IdP metadata.xml parser'
|
@@ -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.
|
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:
|
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
|
@@ -138,7 +152,7 @@ dependencies:
|
|
138
152
|
version: '0'
|
139
153
|
description: SAML IdP metadata.xml parser
|
140
154
|
email:
|
141
|
-
-
|
155
|
+
- info@tknzk.dev
|
142
156
|
executables: []
|
143
157
|
extensions: []
|
144
158
|
extra_rdoc_files: []
|
@@ -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.
|
206
|
+
rubygems_version: 3.5.22
|
193
207
|
signing_key:
|
194
208
|
specification_version: 4
|
195
209
|
summary: SAML IdP metadata.xml parser
|