saml_idp_metadata 0.1.2 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +66 -8
- data/.github/workflows/ruby.yml +17 -12
- data/.ruby-version +1 -0
- data/CHANGELOG.md +105 -0
- data/CODE_OF_CONDUCT.md +1 -1
- data/Gemfile.lock +42 -31
- data/README.md +2 -0
- data/lib/saml_idp_metadata/version.rb +1 -1
- data/saml_idp_metadata.gemspec +2 -1
- metadata +21 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 282a75c0a7b442a39eaf12bbb5a2e023d03aed8cb3f0273f88efc9fa672bb002
|
4
|
+
data.tar.gz: f2fa8c885ead3c24a698ba1380d99868f2675fa7b90142879bb53724c3045ccf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2822d733c51c8bfdb061e535db9eb4cefc42953c5dbd3353e72d81bab9fecb1f2a2187387c7f3000d5d6a73c2dd54b8da7189567af03162dce7f0dd406323188
|
7
|
+
data.tar.gz: 32bdaae37a5185369122c0bfc60829e27ad8dc1abc59b2613efd2ea982e24654e9bc4a5f219a5e1842d942480d5349bd853cc4fb053a5415ab790a0d6b59d715
|
data/.circleci/config.yml
CHANGED
@@ -1,17 +1,75 @@
|
|
1
|
-
version: 2
|
1
|
+
version: 2.1
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
executors:
|
4
|
+
working_directory: /root/saml_idp_metadata
|
5
|
+
ruby_2_7:
|
6
|
+
docker:
|
7
|
+
- image: rubylang/ruby:2.7.1-bionic
|
8
|
+
ruby_2_6:
|
9
|
+
docker:
|
10
|
+
- image: rubylang/ruby:2.6.6-bionic
|
11
|
+
ruby_2_5:
|
5
12
|
docker:
|
6
|
-
- image: ruby:2.
|
13
|
+
- image: rubylang/ruby:2.5.7-bionic
|
14
|
+
|
15
|
+
commands:
|
16
|
+
install_system_dependencies:
|
17
|
+
description: "Install system dependencies"
|
18
|
+
steps:
|
19
|
+
- run:
|
20
|
+
name: Install System Dependencies
|
21
|
+
# https://circleci.com/docs/2.0/custom-images/#required-tools-for-primary-containers
|
22
|
+
command: apt-get update -y && apt-get install -y ssh
|
23
|
+
|
24
|
+
bundle_gems:
|
25
|
+
description: "Bundle gems"
|
26
|
+
steps:
|
27
|
+
- run:
|
28
|
+
name: Bundle gems
|
29
|
+
command: |
|
30
|
+
gem install bundler -v 2.1.4 --no-document --force
|
31
|
+
bundle install
|
32
|
+
|
33
|
+
run_tests:
|
34
|
+
description: "Run tests"
|
35
|
+
steps:
|
36
|
+
- run:
|
37
|
+
name: Run tests
|
38
|
+
command: |
|
39
|
+
bundle exec rake
|
40
|
+
bundle exec rubocop
|
41
|
+
- store_artifacts:
|
42
|
+
path: coverage
|
43
|
+
|
44
|
+
jobs:
|
45
|
+
run_tests_on_ruby_2_7:
|
46
|
+
executor: ruby_2_7
|
47
|
+
steps:
|
48
|
+
- install_system_dependencies
|
49
|
+
- checkout
|
50
|
+
- bundle_gems
|
51
|
+
- run_tests
|
52
|
+
|
53
|
+
run_tests_on_ruby_2_6:
|
54
|
+
executor: ruby_2_6
|
55
|
+
steps:
|
56
|
+
- install_system_dependencies
|
57
|
+
- checkout
|
58
|
+
- bundle_gems
|
59
|
+
- run_tests
|
60
|
+
|
61
|
+
run_tests_on_ruby_2_5:
|
62
|
+
executor: ruby_2_5
|
7
63
|
steps:
|
64
|
+
- install_system_dependencies
|
8
65
|
- checkout
|
9
|
-
-
|
10
|
-
-
|
11
|
-
- run: bundle exec rake
|
66
|
+
- bundle_gems
|
67
|
+
- run_tests
|
12
68
|
|
13
69
|
workflows:
|
14
70
|
version: 2
|
15
71
|
test:
|
16
72
|
jobs:
|
17
|
-
-
|
73
|
+
- run_tests_on_ruby_2_7
|
74
|
+
- run_tests_on_ruby_2_6
|
75
|
+
- run_tests_on_ruby_2_5
|
data/.github/workflows/ruby.yml
CHANGED
@@ -4,18 +4,23 @@ on: [push]
|
|
4
4
|
|
5
5
|
jobs:
|
6
6
|
build:
|
7
|
-
|
8
7
|
runs-on: ubuntu-latest
|
8
|
+
strategy:
|
9
|
+
matrix:
|
10
|
+
ruby:
|
11
|
+
# https://hub.docker.com/r/rubylang/ruby
|
12
|
+
- '2.5-bionic'
|
13
|
+
- '2.6-bionic'
|
14
|
+
- '2.7-bionic'
|
15
|
+
- 'latest'
|
16
|
+
container:
|
17
|
+
image: rubylang/ruby:${{ matrix.ruby }}
|
9
18
|
|
10
19
|
steps:
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
gem install bundler -v 2.0.2
|
19
|
-
bundle install
|
20
|
-
bundle exec rubocop
|
21
|
-
bundle exec rake
|
20
|
+
- uses: actions/checkout@master
|
21
|
+
- name: Build and test
|
22
|
+
run: |
|
23
|
+
gem install bundler -v 2.1.4 --force
|
24
|
+
bundle install
|
25
|
+
bundle exec rubocop
|
26
|
+
bundle exec rake
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.7.1
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [v0.1.6](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.6) (2020-05-19)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.5...v0.1.6)
|
6
|
+
|
7
|
+
**Security fixes:**
|
8
|
+
|
9
|
+
- \[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))
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- bumpup 0.1.6 [\#52](https://github.com/tknzk/saml_idp_metadata/pull/52) ([tknzk](https://github.com/tknzk))
|
14
|
+
- 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))
|
15
|
+
- 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))
|
16
|
+
- 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))
|
17
|
+
- 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))
|
18
|
+
- 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))
|
19
|
+
- 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))
|
20
|
+
- 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))
|
21
|
+
- 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))
|
22
|
+
- 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))
|
23
|
+
- 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))
|
24
|
+
- update changelog [\#40](https://github.com/tknzk/saml_idp_metadata/pull/40) ([tknzk](https://github.com/tknzk))
|
25
|
+
|
26
|
+
## [v0.1.5](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.5) (2020-04-08)
|
27
|
+
|
28
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.4...v0.1.5)
|
29
|
+
|
30
|
+
**Merged pull requests:**
|
31
|
+
|
32
|
+
- bumpup 0.1.5 [\#39](https://github.com/tknzk/saml_idp_metadata/pull/39) ([tknzk](https://github.com/tknzk))
|
33
|
+
- 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))
|
34
|
+
- 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))
|
35
|
+
- 🎉Ruby 2.7.1 [\#36](https://github.com/tknzk/saml_idp_metadata/pull/36) ([tknzk](https://github.com/tknzk))
|
36
|
+
- 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))
|
37
|
+
- 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))
|
38
|
+
- 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))
|
39
|
+
- 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))
|
40
|
+
- 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))
|
41
|
+
- 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))
|
42
|
+
- 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))
|
43
|
+
- 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))
|
44
|
+
- 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))
|
45
|
+
- 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))
|
46
|
+
- 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))
|
47
|
+
- 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))
|
48
|
+
- 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))
|
49
|
+
- 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))
|
50
|
+
- update changelog [\#21](https://github.com/tknzk/saml_idp_metadata/pull/21) ([tknzk](https://github.com/tknzk))
|
51
|
+
|
52
|
+
## [v0.1.4](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.4) (2020-01-11)
|
53
|
+
|
54
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.3...v0.1.4)
|
55
|
+
|
56
|
+
**Merged pull requests:**
|
57
|
+
|
58
|
+
- bumpup [\#20](https://github.com/tknzk/saml_idp_metadata/pull/20) ([tknzk](https://github.com/tknzk))
|
59
|
+
- bundle update [\#19](https://github.com/tknzk/saml_idp_metadata/pull/19) ([tknzk](https://github.com/tknzk))
|
60
|
+
- fix working\_dir [\#18](https://github.com/tknzk/saml_idp_metadata/pull/18) ([tknzk](https://github.com/tknzk))
|
61
|
+
- add build status badge [\#17](https://github.com/tknzk/saml_idp_metadata/pull/17) ([tknzk](https://github.com/tknzk))
|
62
|
+
- Modified GitHub workflow [\#16](https://github.com/tknzk/saml_idp_metadata/pull/16) ([tknzk](https://github.com/tknzk))
|
63
|
+
- Modified circleci config [\#15](https://github.com/tknzk/saml_idp_metadata/pull/15) ([tknzk](https://github.com/tknzk))
|
64
|
+
- 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))
|
65
|
+
- rename [\#13](https://github.com/tknzk/saml_idp_metadata/pull/13) ([tknzk](https://github.com/tknzk))
|
66
|
+
- bundler ~\> 2 [\#12](https://github.com/tknzk/saml_idp_metadata/pull/12) ([tknzk](https://github.com/tknzk))
|
67
|
+
- add system dependencies on circleci [\#10](https://github.com/tknzk/saml_idp_metadata/pull/10) ([tknzk](https://github.com/tknzk))
|
68
|
+
- 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))
|
69
|
+
- Ruby 2.7.0 [\#8](https://github.com/tknzk/saml_idp_metadata/pull/8) ([tknzk](https://github.com/tknzk))
|
70
|
+
- change email [\#7](https://github.com/tknzk/saml_idp_metadata/pull/7) ([tknzk](https://github.com/tknzk))
|
71
|
+
- 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
|
+
|
74
|
+
## [v0.1.3](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.3) (2019-11-27)
|
75
|
+
|
76
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.2...v0.1.3)
|
77
|
+
|
78
|
+
**Merged pull requests:**
|
79
|
+
|
80
|
+
- bumpup [\#5](https://github.com/tknzk/saml_idp_metadata/pull/5) ([tknzk](https://github.com/tknzk))
|
81
|
+
- fix a typo [\#3](https://github.com/tknzk/saml_idp_metadata/pull/3) ([tknzk](https://github.com/tknzk))
|
82
|
+
|
83
|
+
## [v0.1.2](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.2) (2019-11-25)
|
84
|
+
|
85
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.1...v0.1.2)
|
86
|
+
|
87
|
+
**Merged pull requests:**
|
88
|
+
|
89
|
+
- add spec. bumpup version. [\#2](https://github.com/tknzk/saml_idp_metadata/pull/2) ([tknzk](https://github.com/tknzk))
|
90
|
+
|
91
|
+
## [v0.1.1](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.1) (2019-11-25)
|
92
|
+
|
93
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.0...v0.1.1)
|
94
|
+
|
95
|
+
**Merged pull requests:**
|
96
|
+
|
97
|
+
- Modified spec & bumpup [\#1](https://github.com/tknzk/saml_idp_metadata/pull/1) ([tknzk](https://github.com/tknzk))
|
98
|
+
|
99
|
+
## [v0.1.0](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.0) (2019-11-25)
|
100
|
+
|
101
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/06dd164eb01378ca8a1c41cad3811682c0d17828...v0.1.0)
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
|
55
55
|
## Enforcement
|
56
56
|
|
57
57
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
-
reported by contacting the project team at
|
58
|
+
reported by contacting the project team at info@tknzk.dev. All
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
61
61
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
data/Gemfile.lock
CHANGED
@@ -1,72 +1,83 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
saml_idp_metadata (0.1.
|
4
|
+
saml_idp_metadata (0.1.7)
|
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.2)
|
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.3)
|
20
|
-
|
15
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
16
|
+
ast (2.4.1)
|
17
|
+
coderay (1.1.3)
|
18
|
+
concurrent-ruby (1.1.6)
|
19
|
+
diff-lcs (1.4.3)
|
20
|
+
docile (1.3.2)
|
21
|
+
i18n (1.8.3)
|
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.1)
|
25
|
+
parallel (1.19.2)
|
26
|
+
parser (2.7.1.4)
|
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
|
+
regexp_parser (1.7.1)
|
34
|
+
rexml (3.2.4)
|
33
35
|
rspec (3.9.0)
|
34
36
|
rspec-core (~> 3.9.0)
|
35
37
|
rspec-expectations (~> 3.9.0)
|
36
38
|
rspec-mocks (~> 3.9.0)
|
37
|
-
rspec-core (3.9.
|
38
|
-
rspec-support (~> 3.9.
|
39
|
-
rspec-expectations (3.9.
|
39
|
+
rspec-core (3.9.2)
|
40
|
+
rspec-support (~> 3.9.3)
|
41
|
+
rspec-expectations (3.9.2)
|
40
42
|
diff-lcs (>= 1.2.0, < 2.0)
|
41
43
|
rspec-support (~> 3.9.0)
|
42
|
-
rspec-mocks (3.9.
|
44
|
+
rspec-mocks (3.9.1)
|
43
45
|
diff-lcs (>= 1.2.0, < 2.0)
|
44
46
|
rspec-support (~> 3.9.0)
|
45
|
-
rspec-support (3.9.
|
46
|
-
rubocop (0.
|
47
|
-
jaro_winkler (~> 1.5.1)
|
47
|
+
rspec-support (3.9.3)
|
48
|
+
rubocop (0.86.0)
|
48
49
|
parallel (~> 1.10)
|
49
|
-
parser (>= 2.
|
50
|
+
parser (>= 2.7.0.1)
|
50
51
|
rainbow (>= 2.2.2, < 4.0)
|
52
|
+
regexp_parser (>= 1.7)
|
53
|
+
rexml
|
54
|
+
rubocop-ast (>= 0.0.3, < 1.0)
|
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 (0.1.0)
|
58
|
+
parser (>= 2.7.0.1)
|
53
59
|
ruby-progressbar (1.10.1)
|
60
|
+
simplecov (0.18.5)
|
61
|
+
docile (~> 1.1)
|
62
|
+
simplecov-html (~> 0.11)
|
63
|
+
simplecov-html (0.12.2)
|
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.3.1)
|
59
69
|
|
60
70
|
PLATFORMS
|
61
71
|
ruby
|
62
72
|
|
63
73
|
DEPENDENCIES
|
64
|
-
bundler (~>
|
74
|
+
bundler (~> 2)
|
65
75
|
pry
|
66
76
|
rake
|
67
77
|
rspec
|
68
78
|
rubocop
|
69
79
|
saml_idp_metadata!
|
80
|
+
simplecov
|
70
81
|
|
71
82
|
BUNDLED WITH
|
72
|
-
1.
|
83
|
+
2.1.4
|
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# SAML IdP Metadata Parser
|
2
2
|
[ ![](https://img.shields.io/gem/v/saml_idp_metadata.svg)](https://rubygems.org/gems/saml_idp_metadata) [ ![](https://img.shields.io/gem/dt/saml_idp_metadata.svg)](https://rubygems.org/gems/saml_idp_metadata)
|
3
3
|
[![CircleCI](https://circleci.com/gh/tknzk/saml_idp_metadata.svg?style=svg)](https://circleci.com/gh/tknzk/saml_idp_metadata)
|
4
|
+
[![Build Status](https://github.com/tknzk/saml_idp_metadata/workflows/Ruby/badge.svg)](https://github.com/tknzk/saml_idp_metadata/actions?query=workflow%3ARuby)
|
5
|
+
|
4
6
|
|
5
7
|
Parser for SAML IdP metadata
|
6
8
|
|
data/saml_idp_metadata.gemspec
CHANGED
@@ -26,9 +26,10 @@ Gem::Specification.new do |spec|
|
|
26
26
|
|
27
27
|
spec.add_dependency 'activesupport'
|
28
28
|
|
29
|
-
spec.add_development_dependency 'bundler', '~>
|
29
|
+
spec.add_development_dependency 'bundler', '~> 2'
|
30
30
|
spec.add_development_dependency 'pry'
|
31
31
|
spec.add_development_dependency 'rake'
|
32
32
|
spec.add_development_dependency 'rspec'
|
33
33
|
spec.add_development_dependency 'rubocop'
|
34
|
+
spec.add_development_dependency 'simplecov'
|
34
35
|
end
|
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.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: 2020-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '2'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '2'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: pry
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -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
|
@@ -108,6 +122,8 @@ files:
|
|
108
122
|
- ".rspec"
|
109
123
|
- ".rubocop.yml"
|
110
124
|
- ".rubocop_todo.yml"
|
125
|
+
- ".ruby-version"
|
126
|
+
- CHANGELOG.md
|
111
127
|
- CODE_OF_CONDUCT.md
|
112
128
|
- Gemfile
|
113
129
|
- Gemfile.lock
|
@@ -139,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
155
|
- !ruby/object:Gem::Version
|
140
156
|
version: '0'
|
141
157
|
requirements: []
|
142
|
-
rubygems_version: 3.
|
158
|
+
rubygems_version: 3.1.2
|
143
159
|
signing_key:
|
144
160
|
specification_version: 4
|
145
161
|
summary: SAML IdP metadata.xml parser
|