saml_idp_metadata 0.1.3 → 0.1.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48e1fea08b67446c64d080c855b2c6d8a40036eae739aa3ced7201439cc0cd34
4
- data.tar.gz: 1933fb574b04b3fb3f60556bac066bb305000c2c33ebe6fa24d99c339bf35ba5
3
+ metadata.gz: 2b54e5a19f98b5dde1d8c6e11af2390fa85884df060cb24442811e9b830788f5
4
+ data.tar.gz: 73898c4784adc8d4a56772f64b8ffd1ae20241d6df24e93957a8a9b177ad5248
5
5
  SHA512:
6
- metadata.gz: c3a2a357ed22c084443f1cab1764a90f6ebd9a5ff38b35b1309ed30070ae5a940cf166d42ecde65be5575cf923b5318b2306f2aa9ba0dbcc9273ce13e6d46d75
7
- data.tar.gz: 0fcaeeeb959b577af41c9aac4fefe94f6d2a0e17e9b6f7b3cad167c301e6cca8adff64d0f2581a06f7e75bf9479a4943e758d6a69469f189d984372819fd3a1f
6
+ metadata.gz: e165120cfeaf53cd475fdae9be4c418104c759b77b7bfd050d0f5ef1f60d692d2fddaf56b5f25282091ab90b54cd467073ec52106347429e8fab3b6116d8759c
7
+ data.tar.gz: 2e8bdc262f8b74e05797bd79a8e8203894e02e9e17f3016011f7b197921c5323cd365666bbef505a4ec09ccd6a3c14224fa4103dc9d2805fdbd6919c87587b46
@@ -1,28 +1,75 @@
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.1-bionic
8
+ ruby_2_6:
5
9
  docker:
6
- - image: ruby:2.5.7
10
+ - image: rubylang/ruby:2.6.6-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
+ - 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
8
49
  - 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
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
16
63
  steps:
64
+ - install_system_dependencies
17
65
  - checkout
18
- - run: gem install bundler
19
- - run: bundle install
20
- - run: bundle exec rubocop
21
- - run: bundle exec rake
66
+ - bundle_gems
67
+ - run_tests
22
68
 
23
69
  workflows:
24
70
  version: 2
25
71
  test:
26
72
  jobs:
27
- - ruby-2.5
28
- - ruby-2.6
73
+ - run_tests_on_ruby_2_7
74
+ - run_tests_on_ruby_2_6
75
+ - 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
@@ -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
@@ -1,26 +1,32 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2019-11-25 10:02:54 +0900 using RuboCop version 0.76.0.
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: 2
14
- # Configuration parameters: CountComments, ExcludedMethods.
21
+ # Offense count: 3
22
+ # Configuration parameters: CountComments, CountAsOne, ExcludedMethods.
15
23
  # ExcludedMethods: refine
16
24
  Metrics/BlockLength:
17
- # Max: 69
18
- Exclude:
19
- - 'spec/**/*'
25
+ Max: 230
20
26
 
21
- # Offense count: 29
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
- Metrics/LineLength:
26
- Max: 128
31
+ Layout/LineLength:
32
+ Max: 126
@@ -0,0 +1 @@
1
+ 2.7.1
@@ -0,0 +1,132 @@
1
+ # Changelog
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
+
30
+ ## [v0.1.6](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.6) (2020-05-19)
31
+
32
+ [Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.5...v0.1.6)
33
+
34
+ **Security fixes:**
35
+
36
+ - \[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))
37
+
38
+ **Merged pull requests:**
39
+
40
+ - bumpup 0.1.6 [\#52](https://github.com/tknzk/saml_idp_metadata/pull/52) ([tknzk](https://github.com/tknzk))
41
+ - 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))
42
+ - 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))
43
+ - 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))
44
+ - 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))
45
+ - 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))
46
+ - 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))
47
+ - 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))
48
+ - 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))
49
+ - 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))
50
+ - 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))
51
+ - update changelog [\#40](https://github.com/tknzk/saml_idp_metadata/pull/40) ([tknzk](https://github.com/tknzk))
52
+
53
+ ## [v0.1.5](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.5) (2020-04-08)
54
+
55
+ [Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.4...v0.1.5)
56
+
57
+ **Merged pull requests:**
58
+
59
+ - bumpup 0.1.5 [\#39](https://github.com/tknzk/saml_idp_metadata/pull/39) ([tknzk](https://github.com/tknzk))
60
+ - 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))
61
+ - 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))
62
+ - 🎉Ruby 2.7.1 [\#36](https://github.com/tknzk/saml_idp_metadata/pull/36) ([tknzk](https://github.com/tknzk))
63
+ - 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))
64
+ - 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))
65
+ - 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))
66
+ - 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))
67
+ - 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))
68
+ - 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))
69
+ - 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))
70
+ - 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))
71
+ - 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))
72
+ - 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))
73
+ - 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))
74
+ - 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))
75
+ - 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))
76
+ - 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))
77
+ - update changelog [\#21](https://github.com/tknzk/saml_idp_metadata/pull/21) ([tknzk](https://github.com/tknzk))
78
+
79
+ ## [v0.1.4](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.4) (2020-01-11)
80
+
81
+ [Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.3...v0.1.4)
82
+
83
+ **Merged pull requests:**
84
+
85
+ - bumpup [\#20](https://github.com/tknzk/saml_idp_metadata/pull/20) ([tknzk](https://github.com/tknzk))
86
+ - bundle update [\#19](https://github.com/tknzk/saml_idp_metadata/pull/19) ([tknzk](https://github.com/tknzk))
87
+ - fix working\_dir [\#18](https://github.com/tknzk/saml_idp_metadata/pull/18) ([tknzk](https://github.com/tknzk))
88
+ - add build status badge [\#17](https://github.com/tknzk/saml_idp_metadata/pull/17) ([tknzk](https://github.com/tknzk))
89
+ - Modified GitHub workflow [\#16](https://github.com/tknzk/saml_idp_metadata/pull/16) ([tknzk](https://github.com/tknzk))
90
+ - Modified circleci config [\#15](https://github.com/tknzk/saml_idp_metadata/pull/15) ([tknzk](https://github.com/tknzk))
91
+ - 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))
92
+ - rename [\#13](https://github.com/tknzk/saml_idp_metadata/pull/13) ([tknzk](https://github.com/tknzk))
93
+ - bundler ~\> 2 [\#12](https://github.com/tknzk/saml_idp_metadata/pull/12) ([tknzk](https://github.com/tknzk))
94
+ - add system dependencies on circleci [\#10](https://github.com/tknzk/saml_idp_metadata/pull/10) ([tknzk](https://github.com/tknzk))
95
+ - 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))
96
+ - Ruby 2.7.0 [\#8](https://github.com/tknzk/saml_idp_metadata/pull/8) ([tknzk](https://github.com/tknzk))
97
+ - change email [\#7](https://github.com/tknzk/saml_idp_metadata/pull/7) ([tknzk](https://github.com/tknzk))
98
+ - add changelog [\#6](https://github.com/tknzk/saml_idp_metadata/pull/6) ([tknzk](https://github.com/tknzk))
99
+
100
+ ## [v0.1.3](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.3) (2019-11-27)
101
+
102
+ [Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.2...v0.1.3)
103
+
104
+ **Merged pull requests:**
105
+
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))
108
+ - fix a typo [\#3](https://github.com/tknzk/saml_idp_metadata/pull/3) ([tknzk](https://github.com/tknzk))
109
+
110
+ ## [v0.1.2](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.2) (2019-11-25)
111
+
112
+ [Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.1...v0.1.2)
113
+
114
+ **Merged pull requests:**
115
+
116
+ - add spec. bumpup version. [\#2](https://github.com/tknzk/saml_idp_metadata/pull/2) ([tknzk](https://github.com/tknzk))
117
+
118
+ ## [v0.1.1](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.1) (2019-11-25)
119
+
120
+ [Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.0...v0.1.1)
121
+
122
+ **Merged pull requests:**
123
+
124
+ - Modified spec & bumpup [\#1](https://github.com/tknzk/saml_idp_metadata/pull/1) ([tknzk](https://github.com/tknzk))
125
+
126
+ ## [v0.1.0](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.0) (2019-11-25)
127
+
128
+ [Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/06dd164eb01378ca8a1c41cad3811682c0d17828...v0.1.0)
129
+
130
+
131
+
132
+ \* *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,72 +1,83 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- saml_idp_metadata (0.1.3)
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.1)
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)
14
14
  tzinfo (~> 1.1)
15
- zeitwerk (~> 2.2)
16
- ast (2.4.0)
17
- coderay (1.1.2)
18
- concurrent-ruby (1.1.5)
19
- diff-lcs (1.3)
20
- i18n (1.7.0)
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
- jaro_winkler (1.5.4)
23
- method_source (0.9.2)
24
- minitest (5.13.0)
25
- parallel (1.19.1)
26
- parser (2.6.5.0)
27
- ast (~> 2.4.0)
28
- pry (0.12.2)
29
- coderay (~> 1.1.0)
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.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.0)
38
- rspec-support (~> 3.9.0)
39
- rspec-expectations (3.9.0)
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.0)
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.0)
46
- rubocop (0.76.0)
47
- jaro_winkler (~> 1.5.1)
47
+ rspec-support (3.9.3)
48
+ rubocop (0.90.0)
48
49
  parallel (~> 1.10)
49
- parser (>= 2.6)
50
+ parser (>= 2.7.1.1)
50
51
  rainbow (>= 2.2.2, < 4.0)
52
+ regexp_parser (>= 1.7)
53
+ rexml
54
+ rubocop-ast (>= 0.3.0, < 1.0)
51
55
  ruby-progressbar (~> 1.7)
52
- unicode-display_width (>= 1.4.0, < 1.7)
56
+ unicode-display_width (>= 1.4.0, < 2.0)
57
+ rubocop-ast (0.3.0)
58
+ parser (>= 2.7.1.4)
53
59
  ruby-progressbar (1.10.1)
60
+ simplecov (0.19.0)
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.5)
65
+ tzinfo (1.2.7)
56
66
  thread_safe (~> 0.1)
57
- unicode-display_width (1.6.0)
58
- zeitwerk (2.2.1)
67
+ unicode-display_width (1.7.0)
68
+ zeitwerk (2.4.0)
59
69
 
60
70
  PLATFORMS
61
71
  ruby
62
72
 
63
73
  DEPENDENCIES
64
- bundler (~> 2.0)
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
- 2.0.2
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
 
@@ -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.8'
5
5
  end
@@ -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', '~> 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'
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.3
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: 2019-11-27 00:00:00.000000000 Z
11
+ date: 2020-09-10 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
@@ -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
@@ -124,7 +140,7 @@ homepage: https://github.com/tknzk/saml_idp_metadata
124
140
  licenses:
125
141
  - MIT
126
142
  metadata: {}
127
- post_install_message:
143
+ post_install_message:
128
144
  rdoc_options: []
129
145
  require_paths:
130
146
  - lib
@@ -139,8 +155,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
155
  - !ruby/object:Gem::Version
140
156
  version: '0'
141
157
  requirements: []
142
- rubygems_version: 3.0.3
143
- signing_key:
158
+ rubygems_version: 3.1.2
159
+ signing_key:
144
160
  specification_version: 4
145
161
  summary: SAML IdP metadata.xml parser
146
162
  test_files: []