saml_idp_metadata 0.1.4 → 0.1.9
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 +15 -2
- data/.github/workflows/ruby.yml +1 -0
- data/.rubocop.yml +69 -0
- data/.rubocop_todo.yml +15 -9
- data/.ruby-version +1 -1
- data/CHANGELOG.md +123 -0
- data/Gemfile.lock +47 -36
- data/lib/saml_idp_metadata/parser.rb +1 -1
- data/lib/saml_idp_metadata/version.rb +1 -1
- data/saml_idp_metadata.gemspec +1 -0
- metadata +20 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb6d155f517d3dcf6f3f250fee6227251e7e06f62b20cc43ffc52eb9581ac3b0
|
|
4
|
+
data.tar.gz: 9e171a7f255d4d0bc21c6ff572fc851561d015aefd7d5c44da59c5deed280697
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c302965910669595c8b2a8a286ede2c6e11fe23fc7e7265e2df3f5d77a44cad5bd0340346fd2f12b814f96a6e6137db37ad229fcf3acb5ff79a721e35f527888
|
|
7
|
+
data.tar.gz: a6054258ca992a92f904a53dd9af56b9b01ea0310ebf608a1f0c4c154f4344ae1a61ad74505081fb6a6fe24db14bca4b4880ac320cdc15387b341f9f8119a3e2
|
data/.circleci/config.yml
CHANGED
|
@@ -2,12 +2,15 @@ version: 2.1
|
|
|
2
2
|
|
|
3
3
|
executors:
|
|
4
4
|
working_directory: /root/saml_idp_metadata
|
|
5
|
+
ruby_3_0_preview1:
|
|
6
|
+
docker:
|
|
7
|
+
- image: rubylang/ruby:3.0.0-preview1-bionic
|
|
5
8
|
ruby_2_7:
|
|
6
9
|
docker:
|
|
7
|
-
- image: rubylang/ruby:2.7.
|
|
10
|
+
- image: rubylang/ruby:2.7.1-bionic
|
|
8
11
|
ruby_2_6:
|
|
9
12
|
docker:
|
|
10
|
-
- image: rubylang/ruby:2.6.
|
|
13
|
+
- image: rubylang/ruby:2.6.6-bionic
|
|
11
14
|
ruby_2_5:
|
|
12
15
|
docker:
|
|
13
16
|
- image: rubylang/ruby:2.5.7-bionic
|
|
@@ -38,8 +41,18 @@ commands:
|
|
|
38
41
|
command: |
|
|
39
42
|
bundle exec rake
|
|
40
43
|
bundle exec rubocop
|
|
44
|
+
- store_artifacts:
|
|
45
|
+
path: coverage
|
|
41
46
|
|
|
42
47
|
jobs:
|
|
48
|
+
run_tests_on_ruby_3_0_preview1:
|
|
49
|
+
executor: ruby_3_0_preview1
|
|
50
|
+
steps:
|
|
51
|
+
- install_system_dependencies
|
|
52
|
+
- checkout
|
|
53
|
+
- bundle_gems
|
|
54
|
+
- run_tests
|
|
55
|
+
|
|
43
56
|
run_tests_on_ruby_2_7:
|
|
44
57
|
executor: ruby_2_7
|
|
45
58
|
steps:
|
data/.github/workflows/ruby.yml
CHANGED
data/.rubocop.yml
CHANGED
|
@@ -1 +1,70 @@
|
|
|
1
1
|
inherit_from: .rubocop_todo.yml
|
|
2
|
+
|
|
3
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
|
4
|
+
Enabled: false
|
|
5
|
+
|
|
6
|
+
Layout/SpaceAroundMethodCallOperator:
|
|
7
|
+
Enabled: false
|
|
8
|
+
|
|
9
|
+
Lint/DeprecatedOpenSSLConstant:
|
|
10
|
+
Enabled: false
|
|
11
|
+
|
|
12
|
+
Lint/DuplicateElsifCondition:
|
|
13
|
+
Enabled: false
|
|
14
|
+
|
|
15
|
+
Lint/MixedRegexpCaptureTypes:
|
|
16
|
+
Enabled: false
|
|
17
|
+
|
|
18
|
+
Lint/RaiseException:
|
|
19
|
+
Enabled: false
|
|
20
|
+
|
|
21
|
+
Lint/StructNewOverride:
|
|
22
|
+
Enabled: false
|
|
23
|
+
|
|
24
|
+
Style/AccessorGrouping:
|
|
25
|
+
Enabled: false
|
|
26
|
+
|
|
27
|
+
Style/ArrayCoercion:
|
|
28
|
+
Enabled: false
|
|
29
|
+
|
|
30
|
+
Style/BisectedAttrAccessor:
|
|
31
|
+
Enabled: false
|
|
32
|
+
|
|
33
|
+
Style/CaseLikeIf:
|
|
34
|
+
Enabled: false
|
|
35
|
+
|
|
36
|
+
Style/ExponentialNotation:
|
|
37
|
+
Enabled: false
|
|
38
|
+
|
|
39
|
+
Style/HashAsLastArrayItem:
|
|
40
|
+
Enabled: false
|
|
41
|
+
|
|
42
|
+
Style/HashEachMethods:
|
|
43
|
+
Enabled: false
|
|
44
|
+
|
|
45
|
+
Style/HashLikeCase:
|
|
46
|
+
Enabled: false
|
|
47
|
+
|
|
48
|
+
Style/HashTransformKeys:
|
|
49
|
+
Enabled: false
|
|
50
|
+
|
|
51
|
+
Style/HashTransformValues:
|
|
52
|
+
Enabled: false
|
|
53
|
+
|
|
54
|
+
Style/RedundantAssignment:
|
|
55
|
+
Enabled: false
|
|
56
|
+
|
|
57
|
+
Style/RedundantFetchBlock:
|
|
58
|
+
Enabled: false
|
|
59
|
+
|
|
60
|
+
Style/RedundantFileExtensionInRequire:
|
|
61
|
+
Enabled: false
|
|
62
|
+
|
|
63
|
+
Style/RedundantRegexpCharacterClass:
|
|
64
|
+
Enabled: false
|
|
65
|
+
|
|
66
|
+
Style/RedundantRegexpEscape:
|
|
67
|
+
Enabled: false
|
|
68
|
+
|
|
69
|
+
Style/SlicingWithRange:
|
|
70
|
+
Enabled: false
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,26 +1,32 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on
|
|
3
|
+
# on 2020-08-06 01:31:39 UTC using RuboCop version 0.89.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
|
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
|
8
8
|
|
|
9
9
|
# Offense count: 1
|
|
10
|
+
# Configuration parameters: Include.
|
|
11
|
+
# Include: **/*.gemspec
|
|
12
|
+
Gemspec/RequiredRubyVersion:
|
|
13
|
+
Exclude:
|
|
14
|
+
- 'saml_idp_metadata.gemspec'
|
|
15
|
+
|
|
16
|
+
# Offense count: 1
|
|
17
|
+
# Configuration parameters: IgnoredMethods.
|
|
10
18
|
Metrics/AbcSize:
|
|
11
19
|
Max: 21
|
|
12
20
|
|
|
13
|
-
# Offense count:
|
|
14
|
-
# Configuration parameters: CountComments, ExcludedMethods.
|
|
21
|
+
# Offense count: 3
|
|
22
|
+
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods.
|
|
15
23
|
# ExcludedMethods: refine
|
|
16
24
|
Metrics/BlockLength:
|
|
17
|
-
|
|
18
|
-
Exclude:
|
|
19
|
-
- 'spec/**/*'
|
|
25
|
+
Max: 230
|
|
20
26
|
|
|
21
|
-
# Offense count:
|
|
27
|
+
# Offense count: 14
|
|
22
28
|
# Cop supports --auto-correct.
|
|
23
29
|
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
|
24
30
|
# URISchemes: http, https
|
|
25
|
-
|
|
26
|
-
Max:
|
|
31
|
+
Layout/LineLength:
|
|
32
|
+
Max: 126
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3.0.0-preview1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,128 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v0.1.8](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.8) (2020-09-10)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.7...v0.1.8)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- bumpup [\#92](https://github.com/tknzk/saml_idp_metadata/pull/92) ([tknzk](https://github.com/tknzk))
|
|
10
|
+
- Bump activesupport from 6.0.3.2 to 6.0.3.3 [\#91](https://github.com/tknzk/saml_idp_metadata/pull/91) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
11
|
+
- Bump minitest from 5.14.1 to 5.14.2 [\#90](https://github.com/tknzk/saml_idp_metadata/pull/90) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
12
|
+
- Bump rubocop from 0.89.1 to 0.90.0 [\#89](https://github.com/tknzk/saml_idp_metadata/pull/89) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
13
|
+
- Bump simplecov from 0.18.5 to 0.19.0 [\#88](https://github.com/tknzk/saml_idp_metadata/pull/88) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
14
|
+
- Bump concurrent-ruby from 1.1.6 to 1.1.7 [\#87](https://github.com/tknzk/saml_idp_metadata/pull/87) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
15
|
+
- Bump rubocop from 0.89.0 to 0.89.1 [\#86](https://github.com/tknzk/saml_idp_metadata/pull/86) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
16
|
+
- Bump rubocop from 0.88.0 to 0.89.0 [\#85](https://github.com/tknzk/saml_idp_metadata/pull/85) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
17
|
+
- Rubocop config [\#84](https://github.com/tknzk/saml_idp_metadata/pull/84) ([tknzk](https://github.com/tknzk))
|
|
18
|
+
- Bump rubocop-ast from 0.2.0 to 0.3.0 [\#83](https://github.com/tknzk/saml_idp_metadata/pull/83) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
19
|
+
- Bump i18n from 1.8.4 to 1.8.5 [\#82](https://github.com/tknzk/saml_idp_metadata/pull/82) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
20
|
+
- Bump i18n from 1.8.3 to 1.8.4 [\#81](https://github.com/tknzk/saml_idp_metadata/pull/81) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
21
|
+
- Bump rubocop-ast from 0.1.0 to 0.2.0 [\#80](https://github.com/tknzk/saml_idp_metadata/pull/80) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
22
|
+
- Bump zeitwerk from 2.3.1 to 2.4.0 [\#79](https://github.com/tknzk/saml_idp_metadata/pull/79) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
23
|
+
- Bump rubocop from 0.87.1 to 0.88.0 [\#78](https://github.com/tknzk/saml_idp_metadata/pull/78) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
24
|
+
- Bump rubocop from 0.87.0 to 0.87.1 [\#77](https://github.com/tknzk/saml_idp_metadata/pull/77) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
25
|
+
- Bump rubocop from 0.86.0 to 0.87.0 [\#76](https://github.com/tknzk/saml_idp_metadata/pull/76) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
26
|
+
- update changelog [\#75](https://github.com/tknzk/saml_idp_metadata/pull/75) ([tknzk](https://github.com/tknzk))
|
|
27
|
+
- Bump diff-lcs from 1.4.3 to 1.4.4 [\#73](https://github.com/tknzk/saml_idp_metadata/pull/73) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
28
|
+
|
|
29
|
+
## [v0.1.7](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.7) (2020-07-02)
|
|
30
|
+
|
|
31
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.6...v0.1.7)
|
|
32
|
+
|
|
33
|
+
**Merged pull requests:**
|
|
34
|
+
|
|
35
|
+
- bumpup [\#74](https://github.com/tknzk/saml_idp_metadata/pull/74) ([tknzk](https://github.com/tknzk))
|
|
36
|
+
- Bump zeitwerk from 2.3.0 to 2.3.1 [\#72](https://github.com/tknzk/saml_idp_metadata/pull/72) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
37
|
+
- Bump diff-lcs from 1.4.2 to 1.4.3 [\#71](https://github.com/tknzk/saml_idp_metadata/pull/71) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
38
|
+
- Bump rubocop-ast from 0.0.3 to 0.1.0 [\#70](https://github.com/tknzk/saml_idp_metadata/pull/70) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
39
|
+
- Bump diff-lcs from 1.4.1 to 1.4.2 [\#69](https://github.com/tknzk/saml_idp_metadata/pull/69) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
40
|
+
- Bump diff-lcs from 1.3 to 1.4.1 [\#68](https://github.com/tknzk/saml_idp_metadata/pull/68) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
41
|
+
- Bump rubocop from 0.85.1 to 0.86.0 [\#67](https://github.com/tknzk/saml_idp_metadata/pull/67) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
42
|
+
- Bump parser from 2.7.1.3 to 2.7.1.4 [\#66](https://github.com/tknzk/saml_idp_metadata/pull/66) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
43
|
+
- Bump parallel from 1.19.1 to 1.19.2 [\#65](https://github.com/tknzk/saml_idp_metadata/pull/65) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
44
|
+
- Bump activesupport from 6.0.3.1 to 6.0.3.2 [\#64](https://github.com/tknzk/saml_idp_metadata/pull/64) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
45
|
+
- Bump ast from 2.4.0 to 2.4.1 [\#63](https://github.com/tknzk/saml_idp_metadata/pull/63) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
46
|
+
- Bump rubocop from 0.85.0 to 0.85.1 [\#62](https://github.com/tknzk/saml_idp_metadata/pull/62) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
47
|
+
- Bump i18n from 1.8.2 to 1.8.3 [\#60](https://github.com/tknzk/saml_idp_metadata/pull/60) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
48
|
+
- Bump rubocop from 0.84.0 to 0.85.0 [\#59](https://github.com/tknzk/saml_idp_metadata/pull/59) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
49
|
+
- Bump coderay from 1.1.2 to 1.1.3 [\#58](https://github.com/tknzk/saml_idp_metadata/pull/58) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
50
|
+
- Bump parser from 2.7.1.2 to 2.7.1.3 [\#57](https://github.com/tknzk/saml_idp_metadata/pull/57) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
51
|
+
- Bump rubocop from 0.83.0 to 0.84.0 [\#56](https://github.com/tknzk/saml_idp_metadata/pull/56) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
52
|
+
- remvoe codecov [\#55](https://github.com/tknzk/saml_idp_metadata/pull/55) ([tknzk](https://github.com/tknzk))
|
|
53
|
+
- add simplecov [\#54](https://github.com/tknzk/saml_idp_metadata/pull/54) ([tknzk](https://github.com/tknzk))
|
|
54
|
+
- update changelog [\#53](https://github.com/tknzk/saml_idp_metadata/pull/53) ([tknzk](https://github.com/tknzk))
|
|
55
|
+
|
|
56
|
+
## [v0.1.6](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.6) (2020-05-19)
|
|
57
|
+
|
|
58
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.5...v0.1.6)
|
|
59
|
+
|
|
60
|
+
**Security fixes:**
|
|
61
|
+
|
|
62
|
+
- \[Security\] Bump activesupport from 6.0.3 to 6.0.3.1 [\#50](https://github.com/tknzk/saml_idp_metadata/pull/50) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
63
|
+
|
|
64
|
+
**Merged pull requests:**
|
|
65
|
+
|
|
66
|
+
- bumpup 0.1.6 [\#52](https://github.com/tknzk/saml_idp_metadata/pull/52) ([tknzk](https://github.com/tknzk))
|
|
67
|
+
- Bump minitest from 5.14.0 to 5.14.1 [\#51](https://github.com/tknzk/saml_idp_metadata/pull/51) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
68
|
+
- Bump rubocop from 0.82.0 to 0.83.0 [\#49](https://github.com/tknzk/saml_idp_metadata/pull/49) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
69
|
+
- Bump rspec-expectations from 3.9.1 to 3.9.2 [\#48](https://github.com/tknzk/saml_idp_metadata/pull/48) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
70
|
+
- Bump activesupport from 6.0.2.2 to 6.0.3 [\#47](https://github.com/tknzk/saml_idp_metadata/pull/47) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
71
|
+
- Bump rspec-support from 3.9.2 to 3.9.3 [\#46](https://github.com/tknzk/saml_idp_metadata/pull/46) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
72
|
+
- Bump rspec-core from 3.9.1 to 3.9.2 [\#45](https://github.com/tknzk/saml_idp_metadata/pull/45) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
73
|
+
- Bump parser from 2.7.1.1 to 2.7.1.2 [\#44](https://github.com/tknzk/saml_idp_metadata/pull/44) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
74
|
+
- Bump rubocop from 0.81.0 to 0.82.0 [\#43](https://github.com/tknzk/saml_idp_metadata/pull/43) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
75
|
+
- Bump parser from 2.7.1.0 to 2.7.1.1 [\#42](https://github.com/tknzk/saml_idp_metadata/pull/42) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
76
|
+
- Bump pry from 0.13.0 to 0.13.1 [\#41](https://github.com/tknzk/saml_idp_metadata/pull/41) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
77
|
+
- update changelog [\#40](https://github.com/tknzk/saml_idp_metadata/pull/40) ([tknzk](https://github.com/tknzk))
|
|
78
|
+
|
|
79
|
+
## [v0.1.5](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.5) (2020-04-08)
|
|
80
|
+
|
|
81
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.4...v0.1.5)
|
|
82
|
+
|
|
83
|
+
**Merged pull requests:**
|
|
84
|
+
|
|
85
|
+
- bumpup 0.1.5 [\#39](https://github.com/tknzk/saml_idp_metadata/pull/39) ([tknzk](https://github.com/tknzk))
|
|
86
|
+
- Bump parser from 2.7.0.5 to 2.7.1.0 [\#38](https://github.com/tknzk/saml_idp_metadata/pull/38) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
87
|
+
- Bump tzinfo from 1.2.6 to 1.2.7 [\#37](https://github.com/tknzk/saml_idp_metadata/pull/37) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
88
|
+
- 🎉Ruby 2.7.1 [\#36](https://github.com/tknzk/saml_idp_metadata/pull/36) ([tknzk](https://github.com/tknzk))
|
|
89
|
+
- Bump rubocop from 0.80.1 to 0.81.0 [\#35](https://github.com/tknzk/saml_idp_metadata/pull/35) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
90
|
+
- Bump pry from 0.12.2 to 0.13.0 [\#34](https://github.com/tknzk/saml_idp_metadata/pull/34) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
91
|
+
- Bump parser from 2.7.0.4 to 2.7.0.5 [\#33](https://github.com/tknzk/saml_idp_metadata/pull/33) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
92
|
+
- Bump activesupport from 6.0.2.1 to 6.0.2.2 [\#32](https://github.com/tknzk/saml_idp_metadata/pull/32) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
93
|
+
- Bump rspec-expectations from 3.9.0 to 3.9.1 [\#31](https://github.com/tknzk/saml_idp_metadata/pull/31) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
94
|
+
- Bump zeitwerk from 2.2.2 to 2.3.0 [\#30](https://github.com/tknzk/saml_idp_metadata/pull/30) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
95
|
+
- Bump parser from 2.7.0.3 to 2.7.0.4 [\#29](https://github.com/tknzk/saml_idp_metadata/pull/29) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
96
|
+
- Bump rubocop from 0.80.0 to 0.80.1 [\#28](https://github.com/tknzk/saml_idp_metadata/pull/28) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
97
|
+
- Bump parser from 2.7.0.2 to 2.7.0.3 [\#27](https://github.com/tknzk/saml_idp_metadata/pull/27) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
98
|
+
- Bump rubocop from 0.79.0 to 0.80.0 [\#26](https://github.com/tknzk/saml_idp_metadata/pull/26) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
99
|
+
- Bump concurrent-ruby from 1.1.5 to 1.1.6 [\#25](https://github.com/tknzk/saml_idp_metadata/pull/25) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
100
|
+
- Bump i18n from 1.8.1 to 1.8.2 [\#24](https://github.com/tknzk/saml_idp_metadata/pull/24) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
101
|
+
- Bump unicode-display\_width from 1.6.0 to 1.6.1 [\#23](https://github.com/tknzk/saml_idp_metadata/pull/23) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
102
|
+
- Bump minitest from 5.13.0 to 5.14.0 [\#22](https://github.com/tknzk/saml_idp_metadata/pull/22) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
103
|
+
- update changelog [\#21](https://github.com/tknzk/saml_idp_metadata/pull/21) ([tknzk](https://github.com/tknzk))
|
|
104
|
+
|
|
105
|
+
## [v0.1.4](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.4) (2020-01-11)
|
|
106
|
+
|
|
107
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.3...v0.1.4)
|
|
108
|
+
|
|
109
|
+
**Merged pull requests:**
|
|
110
|
+
|
|
111
|
+
- bumpup [\#20](https://github.com/tknzk/saml_idp_metadata/pull/20) ([tknzk](https://github.com/tknzk))
|
|
112
|
+
- bundle update [\#19](https://github.com/tknzk/saml_idp_metadata/pull/19) ([tknzk](https://github.com/tknzk))
|
|
113
|
+
- fix working\_dir [\#18](https://github.com/tknzk/saml_idp_metadata/pull/18) ([tknzk](https://github.com/tknzk))
|
|
114
|
+
- add build status badge [\#17](https://github.com/tknzk/saml_idp_metadata/pull/17) ([tknzk](https://github.com/tknzk))
|
|
115
|
+
- Modified GitHub workflow [\#16](https://github.com/tknzk/saml_idp_metadata/pull/16) ([tknzk](https://github.com/tknzk))
|
|
116
|
+
- Modified circleci config [\#15](https://github.com/tknzk/saml_idp_metadata/pull/15) ([tknzk](https://github.com/tknzk))
|
|
117
|
+
- Bump rubocop from 0.78.0 to 0.79.0 [\#14](https://github.com/tknzk/saml_idp_metadata/pull/14) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
118
|
+
- rename [\#13](https://github.com/tknzk/saml_idp_metadata/pull/13) ([tknzk](https://github.com/tknzk))
|
|
119
|
+
- bundler ~\> 2 [\#12](https://github.com/tknzk/saml_idp_metadata/pull/12) ([tknzk](https://github.com/tknzk))
|
|
120
|
+
- add system dependencies on circleci [\#10](https://github.com/tknzk/saml_idp_metadata/pull/10) ([tknzk](https://github.com/tknzk))
|
|
121
|
+
- bumpup parser 2.6.5.0 to 2.7.0.0 [\#9](https://github.com/tknzk/saml_idp_metadata/pull/9) ([tknzk](https://github.com/tknzk))
|
|
122
|
+
- Ruby 2.7.0 [\#8](https://github.com/tknzk/saml_idp_metadata/pull/8) ([tknzk](https://github.com/tknzk))
|
|
123
|
+
- change email [\#7](https://github.com/tknzk/saml_idp_metadata/pull/7) ([tknzk](https://github.com/tknzk))
|
|
124
|
+
- add changelog [\#6](https://github.com/tknzk/saml_idp_metadata/pull/6) ([tknzk](https://github.com/tknzk))
|
|
125
|
+
|
|
3
126
|
## [v0.1.3](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.3) (2019-11-27)
|
|
4
127
|
|
|
5
128
|
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.2...v0.1.3)
|
data/Gemfile.lock
CHANGED
|
@@ -1,61 +1,71 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
saml_idp_metadata (0.1.
|
|
4
|
+
saml_idp_metadata (0.1.9)
|
|
5
5
|
activesupport
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
activesupport (6.0.
|
|
10
|
+
activesupport (6.0.3.4)
|
|
11
11
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
12
12
|
i18n (>= 0.7, < 2)
|
|
13
13
|
minitest (~> 5.1)
|
|
14
14
|
tzinfo (~> 1.1)
|
|
15
|
-
zeitwerk (~> 2.2)
|
|
16
|
-
ast (2.4.
|
|
17
|
-
coderay (1.1.
|
|
18
|
-
concurrent-ruby (1.1.
|
|
19
|
-
diff-lcs (1.
|
|
20
|
-
|
|
15
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
|
16
|
+
ast (2.4.1)
|
|
17
|
+
coderay (1.1.3)
|
|
18
|
+
concurrent-ruby (1.1.7)
|
|
19
|
+
diff-lcs (1.4.4)
|
|
20
|
+
docile (1.3.2)
|
|
21
|
+
i18n (1.8.5)
|
|
21
22
|
concurrent-ruby (~> 1.0)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
method_source (~> 0.9.0)
|
|
23
|
+
method_source (1.0.0)
|
|
24
|
+
minitest (5.14.2)
|
|
25
|
+
parallel (1.19.2)
|
|
26
|
+
parser (2.7.2.0)
|
|
27
|
+
ast (~> 2.4.1)
|
|
28
|
+
pry (0.13.1)
|
|
29
|
+
coderay (~> 1.1)
|
|
30
|
+
method_source (~> 1.0)
|
|
31
31
|
rainbow (3.0.0)
|
|
32
32
|
rake (13.0.1)
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
rspec-
|
|
37
|
-
|
|
38
|
-
rspec-
|
|
39
|
-
rspec-
|
|
33
|
+
regexp_parser (1.8.2)
|
|
34
|
+
rexml (3.2.4)
|
|
35
|
+
rspec (3.10.0)
|
|
36
|
+
rspec-core (~> 3.10.0)
|
|
37
|
+
rspec-expectations (~> 3.10.0)
|
|
38
|
+
rspec-mocks (~> 3.10.0)
|
|
39
|
+
rspec-core (3.10.0)
|
|
40
|
+
rspec-support (~> 3.10.0)
|
|
41
|
+
rspec-expectations (3.10.0)
|
|
40
42
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
41
|
-
rspec-support (~> 3.
|
|
42
|
-
rspec-mocks (3.
|
|
43
|
+
rspec-support (~> 3.10.0)
|
|
44
|
+
rspec-mocks (3.10.0)
|
|
43
45
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
44
|
-
rspec-support (~> 3.
|
|
45
|
-
rspec-support (3.
|
|
46
|
-
rubocop (
|
|
47
|
-
jaro_winkler (~> 1.5.1)
|
|
46
|
+
rspec-support (~> 3.10.0)
|
|
47
|
+
rspec-support (3.10.0)
|
|
48
|
+
rubocop (1.1.0)
|
|
48
49
|
parallel (~> 1.10)
|
|
49
|
-
parser (>= 2.7.
|
|
50
|
+
parser (>= 2.7.1.5)
|
|
50
51
|
rainbow (>= 2.2.2, < 4.0)
|
|
52
|
+
regexp_parser (>= 1.8)
|
|
53
|
+
rexml
|
|
54
|
+
rubocop-ast (>= 1.0.1)
|
|
51
55
|
ruby-progressbar (~> 1.7)
|
|
52
|
-
unicode-display_width (>= 1.4.0, <
|
|
56
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
|
57
|
+
rubocop-ast (1.1.0)
|
|
58
|
+
parser (>= 2.7.1.5)
|
|
53
59
|
ruby-progressbar (1.10.1)
|
|
60
|
+
simplecov (0.19.1)
|
|
61
|
+
docile (~> 1.1)
|
|
62
|
+
simplecov-html (~> 0.11)
|
|
63
|
+
simplecov-html (0.12.3)
|
|
54
64
|
thread_safe (0.3.6)
|
|
55
|
-
tzinfo (1.2.
|
|
65
|
+
tzinfo (1.2.7)
|
|
56
66
|
thread_safe (~> 0.1)
|
|
57
|
-
unicode-display_width (1.
|
|
58
|
-
zeitwerk (2.
|
|
67
|
+
unicode-display_width (1.7.0)
|
|
68
|
+
zeitwerk (2.4.1)
|
|
59
69
|
|
|
60
70
|
PLATFORMS
|
|
61
71
|
ruby
|
|
@@ -67,6 +77,7 @@ DEPENDENCIES
|
|
|
67
77
|
rspec
|
|
68
78
|
rubocop
|
|
69
79
|
saml_idp_metadata!
|
|
80
|
+
simplecov
|
|
70
81
|
|
|
71
82
|
BUNDLED WITH
|
|
72
|
-
2.1
|
|
83
|
+
2.2.0.rc.1
|
|
@@ -108,7 +108,7 @@ module SamlIdpMetadata
|
|
|
108
108
|
def parse_x509_certificate
|
|
109
109
|
return nil if entity_descriptor.dig('IDPSSODescriptor', 'KeyDescriptor').nil?
|
|
110
110
|
|
|
111
|
-
if entity_descriptor['IDPSSODescriptor']['KeyDescriptor'].
|
|
111
|
+
if entity_descriptor['IDPSSODescriptor']['KeyDescriptor'].instance_of?(Array)
|
|
112
112
|
entity_descriptor['IDPSSODescriptor']['KeyDescriptor'].last['KeyInfo']['X509Data']['X509Certificate']
|
|
113
113
|
else
|
|
114
114
|
entity_descriptor['IDPSSODescriptor']['KeyDescriptor']['KeyInfo']['X509Data']['X509Certificate']
|
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.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tknzk
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-11-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -94,6 +94,20 @@ dependencies:
|
|
|
94
94
|
- - ">="
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: simplecov
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
97
111
|
description: SAML IdP metadata.xml parser
|
|
98
112
|
email:
|
|
99
113
|
- tkm.knzk@gmail.com
|
|
@@ -126,7 +140,7 @@ homepage: https://github.com/tknzk/saml_idp_metadata
|
|
|
126
140
|
licenses:
|
|
127
141
|
- MIT
|
|
128
142
|
metadata: {}
|
|
129
|
-
post_install_message:
|
|
143
|
+
post_install_message:
|
|
130
144
|
rdoc_options: []
|
|
131
145
|
require_paths:
|
|
132
146
|
- lib
|
|
@@ -141,8 +155,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
141
155
|
- !ruby/object:Gem::Version
|
|
142
156
|
version: '0'
|
|
143
157
|
requirements: []
|
|
144
|
-
rubygems_version: 3.1
|
|
145
|
-
signing_key:
|
|
158
|
+
rubygems_version: 3.2.0.rc.1
|
|
159
|
+
signing_key:
|
|
146
160
|
specification_version: 4
|
|
147
161
|
summary: SAML IdP metadata.xml parser
|
|
148
162
|
test_files: []
|