saml_idp_metadata 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +69 -0
- data/.rubocop_todo.yml +15 -9
- data/CHANGELOG.md +28 -1
- data/Gemfile.lock +13 -13
- data/lib/saml_idp_metadata/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b54e5a19f98b5dde1d8c6e11af2390fa85884df060cb24442811e9b830788f5
|
4
|
+
data.tar.gz: 73898c4784adc8d4a56772f64b8ffd1ae20241d6df24e93957a8a9b177ad5248
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e165120cfeaf53cd475fdae9be4c418104c759b77b7bfd050d0f5ef1f60d692d2fddaf56b5f25282091ab90b54cd467073ec52106347429e8fab3b6116d8759c
|
7
|
+
data.tar.gz: 2e8bdc262f8b74e05797bd79a8e8203894e02e9e17f3016011f7b197921c5323cd365666bbef505a4ec09ccd6a3c14224fa4103dc9d2805fdbd6919c87587b46
|
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/CHANGELOG.md
CHANGED
@@ -1,5 +1,32 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v0.1.7](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.7) (2020-07-02)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.6...v0.1.7)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- bumpup [\#74](https://github.com/tknzk/saml_idp_metadata/pull/74) ([tknzk](https://github.com/tknzk))
|
10
|
+
- 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))
|
11
|
+
- 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))
|
12
|
+
- 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))
|
13
|
+
- 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))
|
14
|
+
- 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))
|
15
|
+
- 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))
|
16
|
+
- 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))
|
17
|
+
- 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))
|
18
|
+
- 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))
|
19
|
+
- 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))
|
20
|
+
- 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))
|
21
|
+
- 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))
|
22
|
+
- 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))
|
23
|
+
- 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))
|
24
|
+
- 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))
|
25
|
+
- 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))
|
26
|
+
- remvoe codecov [\#55](https://github.com/tknzk/saml_idp_metadata/pull/55) ([tknzk](https://github.com/tknzk))
|
27
|
+
- add simplecov [\#54](https://github.com/tknzk/saml_idp_metadata/pull/54) ([tknzk](https://github.com/tknzk))
|
28
|
+
- update changelog [\#53](https://github.com/tknzk/saml_idp_metadata/pull/53) ([tknzk](https://github.com/tknzk))
|
29
|
+
|
3
30
|
## [v0.1.6](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.6) (2020-05-19)
|
4
31
|
|
5
32
|
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.5...v0.1.6)
|
@@ -69,7 +96,6 @@
|
|
69
96
|
- Ruby 2.7.0 [\#8](https://github.com/tknzk/saml_idp_metadata/pull/8) ([tknzk](https://github.com/tknzk))
|
70
97
|
- change email [\#7](https://github.com/tknzk/saml_idp_metadata/pull/7) ([tknzk](https://github.com/tknzk))
|
71
98
|
- add changelog [\#6](https://github.com/tknzk/saml_idp_metadata/pull/6) ([tknzk](https://github.com/tknzk))
|
72
|
-
- ruby 2.5.x , bundler 2.0.2 [\#4](https://github.com/tknzk/saml_idp_metadata/pull/4) ([tknzk](https://github.com/tknzk))
|
73
99
|
|
74
100
|
## [v0.1.3](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.3) (2019-11-27)
|
75
101
|
|
@@ -78,6 +104,7 @@
|
|
78
104
|
**Merged pull requests:**
|
79
105
|
|
80
106
|
- bumpup [\#5](https://github.com/tknzk/saml_idp_metadata/pull/5) ([tknzk](https://github.com/tknzk))
|
107
|
+
- ruby 2.5.x , bundler 2.0.2 [\#4](https://github.com/tknzk/saml_idp_metadata/pull/4) ([tknzk](https://github.com/tknzk))
|
81
108
|
- fix a typo [\#3](https://github.com/tknzk/saml_idp_metadata/pull/3) ([tknzk](https://github.com/tknzk))
|
82
109
|
|
83
110
|
## [v0.1.2](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.2) (2019-11-25)
|
data/Gemfile.lock
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
saml_idp_metadata (0.1.
|
4
|
+
saml_idp_metadata (0.1.8)
|
5
5
|
activesupport
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activesupport (6.0.3.
|
10
|
+
activesupport (6.0.3.3)
|
11
11
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
12
|
i18n (>= 0.7, < 2)
|
13
13
|
minitest (~> 5.1)
|
@@ -15,13 +15,13 @@ GEM
|
|
15
15
|
zeitwerk (~> 2.2, >= 2.2.2)
|
16
16
|
ast (2.4.1)
|
17
17
|
coderay (1.1.3)
|
18
|
-
concurrent-ruby (1.1.
|
19
|
-
diff-lcs (1.4.
|
18
|
+
concurrent-ruby (1.1.7)
|
19
|
+
diff-lcs (1.4.4)
|
20
20
|
docile (1.3.2)
|
21
|
-
i18n (1.8.
|
21
|
+
i18n (1.8.5)
|
22
22
|
concurrent-ruby (~> 1.0)
|
23
23
|
method_source (1.0.0)
|
24
|
-
minitest (5.14.
|
24
|
+
minitest (5.14.2)
|
25
25
|
parallel (1.19.2)
|
26
26
|
parser (2.7.1.4)
|
27
27
|
ast (~> 2.4.1)
|
@@ -45,19 +45,19 @@ GEM
|
|
45
45
|
diff-lcs (>= 1.2.0, < 2.0)
|
46
46
|
rspec-support (~> 3.9.0)
|
47
47
|
rspec-support (3.9.3)
|
48
|
-
rubocop (0.
|
48
|
+
rubocop (0.90.0)
|
49
49
|
parallel (~> 1.10)
|
50
|
-
parser (>= 2.7.
|
50
|
+
parser (>= 2.7.1.1)
|
51
51
|
rainbow (>= 2.2.2, < 4.0)
|
52
52
|
regexp_parser (>= 1.7)
|
53
53
|
rexml
|
54
|
-
rubocop-ast (>= 0.0
|
54
|
+
rubocop-ast (>= 0.3.0, < 1.0)
|
55
55
|
ruby-progressbar (~> 1.7)
|
56
56
|
unicode-display_width (>= 1.4.0, < 2.0)
|
57
|
-
rubocop-ast (0.
|
58
|
-
parser (>= 2.7.
|
57
|
+
rubocop-ast (0.3.0)
|
58
|
+
parser (>= 2.7.1.4)
|
59
59
|
ruby-progressbar (1.10.1)
|
60
|
-
simplecov (0.
|
60
|
+
simplecov (0.19.0)
|
61
61
|
docile (~> 1.1)
|
62
62
|
simplecov-html (~> 0.11)
|
63
63
|
simplecov-html (0.12.2)
|
@@ -65,7 +65,7 @@ GEM
|
|
65
65
|
tzinfo (1.2.7)
|
66
66
|
thread_safe (~> 0.1)
|
67
67
|
unicode-display_width (1.7.0)
|
68
|
-
zeitwerk (2.
|
68
|
+
zeitwerk (2.4.0)
|
69
69
|
|
70
70
|
PLATFORMS
|
71
71
|
ruby
|
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.8
|
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-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -140,7 +140,7 @@ homepage: https://github.com/tknzk/saml_idp_metadata
|
|
140
140
|
licenses:
|
141
141
|
- MIT
|
142
142
|
metadata: {}
|
143
|
-
post_install_message:
|
143
|
+
post_install_message:
|
144
144
|
rdoc_options: []
|
145
145
|
require_paths:
|
146
146
|
- lib
|
@@ -156,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
156
|
version: '0'
|
157
157
|
requirements: []
|
158
158
|
rubygems_version: 3.1.2
|
159
|
-
signing_key:
|
159
|
+
signing_key:
|
160
160
|
specification_version: 4
|
161
161
|
summary: SAML IdP metadata.xml parser
|
162
162
|
test_files: []
|