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 +4 -4
- data/.circleci/config.yml +22 -12
- data/.github/workflows/ruby.yml +3 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +11 -0
- data/Gemfile.lock +49 -50
- data/lib/saml_idp_metadata/version.rb +1 -1
- data/saml_idp_metadata.gemspec +1 -0
- metadata +17 -3
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,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.
|
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
|
+
activesupport (7.2.2.1)
|
11
12
|
base64
|
13
|
+
benchmark (>= 0.3)
|
12
14
|
bigdecimal
|
13
|
-
concurrent-ruby (~> 1.0, >= 1.
|
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
|
-
|
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
|
-
|
25
|
+
benchmark (0.4.0)
|
26
|
+
bigdecimal (3.1.9)
|
23
27
|
coderay (1.1.3)
|
24
|
-
concurrent-ruby (1.
|
25
|
-
connection_pool (2.
|
26
|
-
diff-lcs (1.
|
27
|
-
docile (1.4.
|
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.
|
33
|
+
i18n (1.14.7)
|
30
34
|
concurrent-ruby (~> 1.0)
|
31
|
-
json (2.
|
32
|
-
language_server-protocol (3.17.0.
|
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.
|
35
|
-
|
36
|
-
|
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.
|
45
|
+
pry (0.15.2)
|
41
46
|
coderay (~> 1.1)
|
42
47
|
method_source (~> 1.0)
|
43
|
-
racc (1.8.
|
48
|
+
racc (1.8.1)
|
44
49
|
rainbow (3.1.1)
|
45
50
|
rake (13.2.1)
|
46
|
-
regexp_parser (2.
|
47
|
-
rexml (3.
|
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.
|
57
|
+
rspec-core (3.13.3)
|
54
58
|
rspec-support (~> 3.13.0)
|
55
|
-
rspec-expectations (3.13.
|
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.
|
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.
|
62
|
-
rubocop (1.
|
65
|
+
rspec-support (3.13.2)
|
66
|
+
rubocop (1.74.0)
|
63
67
|
json (~> 2.3)
|
64
|
-
language_server-protocol (
|
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 (>=
|
69
|
-
|
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, <
|
73
|
-
rubocop-ast (1.
|
76
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
77
|
+
rubocop-ast (1.39.0)
|
74
78
|
parser (>= 3.3.1.0)
|
75
|
-
rubocop-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
rubocop (~> 1.
|
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.
|
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 (
|
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.
|
115
|
+
2.5.22
|
data/saml_idp_metadata.gemspec
CHANGED
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
|
@@ -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
|