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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48e1fea08b67446c64d080c855b2c6d8a40036eae739aa3ced7201439cc0cd34
4
- data.tar.gz: 1933fb574b04b3fb3f60556bac066bb305000c2c33ebe6fa24d99c339bf35ba5
3
+ metadata.gz: 30db3344c60162099da2f3f54b3f60219e0133e989006c472275602a229d660e
4
+ data.tar.gz: acc0330480462e8ace68921dd016cabfcced2bc7ae78dc7734d18edb104b72f1
5
5
  SHA512:
6
- metadata.gz: c3a2a357ed22c084443f1cab1764a90f6ebd9a5ff38b35b1309ed30070ae5a940cf166d42ecde65be5575cf923b5318b2306f2aa9ba0dbcc9273ce13e6d46d75
7
- data.tar.gz: 0fcaeeeb959b577af41c9aac4fefe94f6d2a0e17e9b6f7b3cad167c301e6cca8adff64d0f2581a06f7e75bf9479a4943e758d6a69469f189d984372819fd3a1f
6
+ metadata.gz: 19e65d35af2c59f7de606e9dc949ce9808a4aa5da3b474871a1f733b65ba8289a7974fc3eac96c18276505076db4f7155d8e7e716c75bdf0b53d880d4b604c57
7
+ data.tar.gz: 417be4a7cb32bf2f19320dd494dcc446899164f132ae4ceeab614b38904ee4ce4f467c34ed29cdb44c790331554568e145a6d247bf92bbc483863f40da384085
@@ -1,28 +1,73 @@
1
- version: 2
1
+ version: 2.1
2
2
 
3
- jobs:
4
- ruby-2.5:
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.7
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
- - run: gem install bundler
10
- - run: bundle install
11
- - run: bundle exec rubocop
12
- - run: bundle exec rake
13
- ruby-2.6:
14
- docker:
15
- - image: ruby:2.6.5
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
- - run: gem install bundler
19
- - run: bundle install
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
- - ruby-2.5
28
- - ruby-2.6
71
+ - run_tests_on_ruby_2_7
72
+ - run_tests_on_ruby_2_6
73
+ - run_tests_on_ruby_2_5
@@ -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
- - uses: actions/checkout@v1
12
- - name: Set up Ruby 2.6
13
- uses: actions/setup-ruby@v1
14
- with:
15
- ruby-version: 2.6.x
16
- - name: Build and test
17
- run: |
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
@@ -0,0 +1 @@
1
+ 2.7.0
@@ -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)*
@@ -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 tkm.knzk@gmail.com. All
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.
@@ -1,13 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- saml_idp_metadata (0.1.3)
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.7.0)
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.6.5.0)
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.0)
38
- rspec-support (~> 3.9.0)
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.0)
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.0)
46
- rubocop (0.76.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.6)
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.5)
55
+ tzinfo (1.2.6)
56
56
  thread_safe (~> 0.1)
57
57
  unicode-display_width (1.6.0)
58
- zeitwerk (2.2.1)
58
+ zeitwerk (2.2.2)
59
59
 
60
60
  PLATFORMS
61
61
  ruby
62
62
 
63
63
  DEPENDENCIES
64
- bundler (~> 2.0)
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.0.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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SamlIdpMetadata
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.4'
5
5
  end
@@ -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.0'
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.3
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: 2019-11-27 00:00:00.000000000 Z
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.0'
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.0'
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.0.3
144
+ rubygems_version: 3.1.2
143
145
  signing_key:
144
146
  specification_version: 4
145
147
  summary: SAML IdP metadata.xml parser