saml_idp_metadata 0.1.3 → 0.1.4
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 +62 -17
- data/.github/workflows/ruby.yml +17 -12
- data/.ruby-version +1 -0
- data/CHANGELOG.md +35 -0
- data/CODE_OF_CONDUCT.md +1 -1
- data/Gemfile.lock +14 -14
- data/README.md +2 -0
- data/lib/saml_idp_metadata/version.rb +1 -1
- data/saml_idp_metadata.gemspec +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30db3344c60162099da2f3f54b3f60219e0133e989006c472275602a229d660e
|
4
|
+
data.tar.gz: acc0330480462e8ace68921dd016cabfcced2bc7ae78dc7734d18edb104b72f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19e65d35af2c59f7de606e9dc949ce9808a4aa5da3b474871a1f733b65ba8289a7974fc3eac96c18276505076db4f7155d8e7e716c75bdf0b53d880d4b604c57
|
7
|
+
data.tar.gz: 417be4a7cb32bf2f19320dd494dcc446899164f132ae4ceeab614b38904ee4ce4f467c34ed29cdb44c790331554568e145a6d247bf92bbc483863f40da384085
|
data/.circleci/config.yml
CHANGED
@@ -1,28 +1,73 @@
|
|
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.0-bionic
|
8
|
+
ruby_2_6:
|
5
9
|
docker:
|
6
|
-
- image: ruby:2.5
|
10
|
+
- image: rubylang/ruby:2.6.5-bionic
|
11
|
+
ruby_2_5:
|
12
|
+
docker:
|
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"
|
7
35
|
steps:
|
36
|
+
- run:
|
37
|
+
name: Run tests
|
38
|
+
command: |
|
39
|
+
bundle exec rake
|
40
|
+
bundle exec rubocop
|
41
|
+
|
42
|
+
jobs:
|
43
|
+
run_tests_on_ruby_2_7:
|
44
|
+
executor: ruby_2_7
|
45
|
+
steps:
|
46
|
+
- install_system_dependencies
|
8
47
|
- checkout
|
9
|
-
-
|
10
|
-
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
-
|
48
|
+
- bundle_gems
|
49
|
+
- run_tests
|
50
|
+
|
51
|
+
run_tests_on_ruby_2_6:
|
52
|
+
executor: ruby_2_6
|
53
|
+
steps:
|
54
|
+
- install_system_dependencies
|
55
|
+
- checkout
|
56
|
+
- bundle_gems
|
57
|
+
- run_tests
|
58
|
+
|
59
|
+
run_tests_on_ruby_2_5:
|
60
|
+
executor: ruby_2_5
|
16
61
|
steps:
|
62
|
+
- install_system_dependencies
|
17
63
|
- checkout
|
18
|
-
-
|
19
|
-
-
|
20
|
-
- run: bundle exec rubocop
|
21
|
-
- run: bundle exec rake
|
64
|
+
- bundle_gems
|
65
|
+
- run_tests
|
22
66
|
|
23
67
|
workflows:
|
24
68
|
version: 2
|
25
69
|
test:
|
26
70
|
jobs:
|
27
|
-
-
|
28
|
-
-
|
71
|
+
- run_tests_on_ruby_2_7
|
72
|
+
- run_tests_on_ruby_2_6
|
73
|
+
- 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.0
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [v0.1.3](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.3) (2019-11-27)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.2...v0.1.3)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- bumpup [\#5](https://github.com/tknzk/saml_idp_metadata/pull/5) ([tknzk](https://github.com/tknzk))
|
10
|
+
- ruby 2.5.x , bundler 2.0.2 [\#4](https://github.com/tknzk/saml_idp_metadata/pull/4) ([tknzk](https://github.com/tknzk))
|
11
|
+
- fix a typo [\#3](https://github.com/tknzk/saml_idp_metadata/pull/3) ([tknzk](https://github.com/tknzk))
|
12
|
+
|
13
|
+
## [v0.1.2](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.2) (2019-11-25)
|
14
|
+
|
15
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.1...v0.1.2)
|
16
|
+
|
17
|
+
**Merged pull requests:**
|
18
|
+
|
19
|
+
- add spec. bumpup version. [\#2](https://github.com/tknzk/saml_idp_metadata/pull/2) ([tknzk](https://github.com/tknzk))
|
20
|
+
|
21
|
+
## [v0.1.1](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.1) (2019-11-25)
|
22
|
+
|
23
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.0...v0.1.1)
|
24
|
+
|
25
|
+
**Merged pull requests:**
|
26
|
+
|
27
|
+
- Modified spec & bumpup [\#1](https://github.com/tknzk/saml_idp_metadata/pull/1) ([tknzk](https://github.com/tknzk))
|
28
|
+
|
29
|
+
## [v0.1.0](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.0) (2019-11-25)
|
30
|
+
|
31
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/06dd164eb01378ca8a1c41cad3811682c0d17828...v0.1.0)
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
\* *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,13 +1,13 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
saml_idp_metadata (0.1.
|
4
|
+
saml_idp_metadata (0.1.4)
|
5
5
|
activesupport
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activesupport (6.0.1)
|
10
|
+
activesupport (6.0.2.1)
|
11
11
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
12
|
i18n (>= 0.7, < 2)
|
13
13
|
minitest (~> 5.1)
|
@@ -17,13 +17,13 @@ GEM
|
|
17
17
|
coderay (1.1.2)
|
18
18
|
concurrent-ruby (1.1.5)
|
19
19
|
diff-lcs (1.3)
|
20
|
-
i18n (1.
|
20
|
+
i18n (1.8.1)
|
21
21
|
concurrent-ruby (~> 1.0)
|
22
22
|
jaro_winkler (1.5.4)
|
23
23
|
method_source (0.9.2)
|
24
24
|
minitest (5.13.0)
|
25
25
|
parallel (1.19.1)
|
26
|
-
parser (2.
|
26
|
+
parser (2.7.0.2)
|
27
27
|
ast (~> 2.4.0)
|
28
28
|
pry (0.12.2)
|
29
29
|
coderay (~> 1.1.0)
|
@@ -34,34 +34,34 @@ GEM
|
|
34
34
|
rspec-core (~> 3.9.0)
|
35
35
|
rspec-expectations (~> 3.9.0)
|
36
36
|
rspec-mocks (~> 3.9.0)
|
37
|
-
rspec-core (3.9.
|
38
|
-
rspec-support (~> 3.9.
|
37
|
+
rspec-core (3.9.1)
|
38
|
+
rspec-support (~> 3.9.1)
|
39
39
|
rspec-expectations (3.9.0)
|
40
40
|
diff-lcs (>= 1.2.0, < 2.0)
|
41
41
|
rspec-support (~> 3.9.0)
|
42
|
-
rspec-mocks (3.9.
|
42
|
+
rspec-mocks (3.9.1)
|
43
43
|
diff-lcs (>= 1.2.0, < 2.0)
|
44
44
|
rspec-support (~> 3.9.0)
|
45
|
-
rspec-support (3.9.
|
46
|
-
rubocop (0.
|
45
|
+
rspec-support (3.9.2)
|
46
|
+
rubocop (0.79.0)
|
47
47
|
jaro_winkler (~> 1.5.1)
|
48
48
|
parallel (~> 1.10)
|
49
|
-
parser (>= 2.
|
49
|
+
parser (>= 2.7.0.1)
|
50
50
|
rainbow (>= 2.2.2, < 4.0)
|
51
51
|
ruby-progressbar (~> 1.7)
|
52
52
|
unicode-display_width (>= 1.4.0, < 1.7)
|
53
53
|
ruby-progressbar (1.10.1)
|
54
54
|
thread_safe (0.3.6)
|
55
|
-
tzinfo (1.2.
|
55
|
+
tzinfo (1.2.6)
|
56
56
|
thread_safe (~> 0.1)
|
57
57
|
unicode-display_width (1.6.0)
|
58
|
-
zeitwerk (2.2.
|
58
|
+
zeitwerk (2.2.2)
|
59
59
|
|
60
60
|
PLATFORMS
|
61
61
|
ruby
|
62
62
|
|
63
63
|
DEPENDENCIES
|
64
|
-
bundler (~> 2
|
64
|
+
bundler (~> 2)
|
65
65
|
pry
|
66
66
|
rake
|
67
67
|
rspec
|
@@ -69,4 +69,4 @@ DEPENDENCIES
|
|
69
69
|
saml_idp_metadata!
|
70
70
|
|
71
71
|
BUNDLED WITH
|
72
|
-
2.
|
72
|
+
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,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
26
26
|
|
27
27
|
spec.add_dependency 'activesupport'
|
28
28
|
|
29
|
-
spec.add_development_dependency 'bundler', '~> 2
|
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'
|
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.4
|
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-01-11 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: '2
|
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: '2
|
40
|
+
version: '2'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: pry
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,6 +108,8 @@ files:
|
|
108
108
|
- ".rspec"
|
109
109
|
- ".rubocop.yml"
|
110
110
|
- ".rubocop_todo.yml"
|
111
|
+
- ".ruby-version"
|
112
|
+
- CHANGELOG.md
|
111
113
|
- CODE_OF_CONDUCT.md
|
112
114
|
- Gemfile
|
113
115
|
- Gemfile.lock
|
@@ -139,7 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
141
|
- !ruby/object:Gem::Version
|
140
142
|
version: '0'
|
141
143
|
requirements: []
|
142
|
-
rubygems_version: 3.
|
144
|
+
rubygems_version: 3.1.2
|
143
145
|
signing_key:
|
144
146
|
specification_version: 4
|
145
147
|
summary: SAML IdP metadata.xml parser
|