saml_idp_metadata 0.1.4 → 0.1.5
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 +2 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +22 -4
- data/Gemfile.lock +18 -16
- data/lib/saml_idp_metadata/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85ead96f12ca278050326407051764d1cd7261d98f5d55947ae3fd3c60664cc2
|
4
|
+
data.tar.gz: 80ad23455ff2dbd0babbb56faab2c7d8e14f08c29da90efbeba4d7118a367fc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6c85bdfdc7e71d5b953b9e19260f7db6486a7ec1622112482857eec64b618e1cae2cf507684ff2991b112f2f9987658dbe39cec6aa4376314d568231fc03591
|
7
|
+
data.tar.gz: 332a071e9224bacd98b002f651dc82d4501cad51454ebc6e6e649ba1821c1ef5f88e6334a60c8e03d06f2a8333bfc6dd887dc6be15fa9dba7b21cbed70e9f7b9
|
data/.circleci/config.yml
CHANGED
@@ -4,10 +4,10 @@ executors:
|
|
4
4
|
working_directory: /root/saml_idp_metadata
|
5
5
|
ruby_2_7:
|
6
6
|
docker:
|
7
|
-
- image: rubylang/ruby:2.7.
|
7
|
+
- image: rubylang/ruby:2.7.1-bionic
|
8
8
|
ruby_2_6:
|
9
9
|
docker:
|
10
|
-
- image: rubylang/ruby:2.6.
|
10
|
+
- image: rubylang/ruby:2.6.6-bionic
|
11
11
|
ruby_2_5:
|
12
12
|
docker:
|
13
13
|
- image: rubylang/ruby:2.5.7-bionic
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.7.
|
1
|
+
2.7.1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v0.1.4](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.4) (2020-01-11)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.3...v0.1.4)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- bumpup [\#20](https://github.com/tknzk/saml_idp_metadata/pull/20) ([tknzk](https://github.com/tknzk))
|
10
|
+
- bundle update [\#19](https://github.com/tknzk/saml_idp_metadata/pull/19) ([tknzk](https://github.com/tknzk))
|
11
|
+
- fix working\_dir [\#18](https://github.com/tknzk/saml_idp_metadata/pull/18) ([tknzk](https://github.com/tknzk))
|
12
|
+
- add build status badge [\#17](https://github.com/tknzk/saml_idp_metadata/pull/17) ([tknzk](https://github.com/tknzk))
|
13
|
+
- Modified GitHub workflow [\#16](https://github.com/tknzk/saml_idp_metadata/pull/16) ([tknzk](https://github.com/tknzk))
|
14
|
+
- Modified circleci config [\#15](https://github.com/tknzk/saml_idp_metadata/pull/15) ([tknzk](https://github.com/tknzk))
|
15
|
+
- 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))
|
16
|
+
- rename [\#13](https://github.com/tknzk/saml_idp_metadata/pull/13) ([tknzk](https://github.com/tknzk))
|
17
|
+
- bundler ~\> 2 [\#12](https://github.com/tknzk/saml_idp_metadata/pull/12) ([tknzk](https://github.com/tknzk))
|
18
|
+
- add system dependencies on circleci [\#10](https://github.com/tknzk/saml_idp_metadata/pull/10) ([tknzk](https://github.com/tknzk))
|
19
|
+
- 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))
|
20
|
+
- Ruby 2.7.0 [\#8](https://github.com/tknzk/saml_idp_metadata/pull/8) ([tknzk](https://github.com/tknzk))
|
21
|
+
- change email [\#7](https://github.com/tknzk/saml_idp_metadata/pull/7) ([tknzk](https://github.com/tknzk))
|
22
|
+
- add changelog [\#6](https://github.com/tknzk/saml_idp_metadata/pull/6) ([tknzk](https://github.com/tknzk))
|
23
|
+
- Modified spec & bumpup [\#1](https://github.com/tknzk/saml_idp_metadata/pull/1) ([tknzk](https://github.com/tknzk))
|
24
|
+
|
3
25
|
## [v0.1.3](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.3) (2019-11-27)
|
4
26
|
|
5
27
|
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.2...v0.1.3)
|
@@ -22,10 +44,6 @@
|
|
22
44
|
|
23
45
|
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.1.0...v0.1.1)
|
24
46
|
|
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
47
|
## [v0.1.0](https://github.com/tknzk/saml_idp_metadata/tree/v0.1.0) (2019-11-25)
|
30
48
|
|
31
49
|
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/06dd164eb01378ca8a1c41cad3811682c0d17828...v0.1.0)
|
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.5)
|
5
5
|
activesupport
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activesupport (6.0.2.
|
10
|
+
activesupport (6.0.2.2)
|
11
11
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
12
|
i18n (>= 0.7, < 2)
|
13
13
|
minitest (~> 5.1)
|
@@ -15,47 +15,49 @@ GEM
|
|
15
15
|
zeitwerk (~> 2.2)
|
16
16
|
ast (2.4.0)
|
17
17
|
coderay (1.1.2)
|
18
|
-
concurrent-ruby (1.1.
|
18
|
+
concurrent-ruby (1.1.6)
|
19
19
|
diff-lcs (1.3)
|
20
|
-
i18n (1.8.
|
20
|
+
i18n (1.8.2)
|
21
21
|
concurrent-ruby (~> 1.0)
|
22
22
|
jaro_winkler (1.5.4)
|
23
|
-
method_source (0.
|
24
|
-
minitest (5.
|
23
|
+
method_source (1.0.0)
|
24
|
+
minitest (5.14.0)
|
25
25
|
parallel (1.19.1)
|
26
|
-
parser (2.7.0
|
26
|
+
parser (2.7.1.0)
|
27
27
|
ast (~> 2.4.0)
|
28
|
-
pry (0.
|
29
|
-
coderay (~> 1.1
|
30
|
-
method_source (~>
|
28
|
+
pry (0.13.0)
|
29
|
+
coderay (~> 1.1)
|
30
|
+
method_source (~> 1.0)
|
31
31
|
rainbow (3.0.0)
|
32
32
|
rake (13.0.1)
|
33
|
+
rexml (3.2.4)
|
33
34
|
rspec (3.9.0)
|
34
35
|
rspec-core (~> 3.9.0)
|
35
36
|
rspec-expectations (~> 3.9.0)
|
36
37
|
rspec-mocks (~> 3.9.0)
|
37
38
|
rspec-core (3.9.1)
|
38
39
|
rspec-support (~> 3.9.1)
|
39
|
-
rspec-expectations (3.9.
|
40
|
+
rspec-expectations (3.9.1)
|
40
41
|
diff-lcs (>= 1.2.0, < 2.0)
|
41
42
|
rspec-support (~> 3.9.0)
|
42
43
|
rspec-mocks (3.9.1)
|
43
44
|
diff-lcs (>= 1.2.0, < 2.0)
|
44
45
|
rspec-support (~> 3.9.0)
|
45
46
|
rspec-support (3.9.2)
|
46
|
-
rubocop (0.
|
47
|
+
rubocop (0.81.0)
|
47
48
|
jaro_winkler (~> 1.5.1)
|
48
49
|
parallel (~> 1.10)
|
49
50
|
parser (>= 2.7.0.1)
|
50
51
|
rainbow (>= 2.2.2, < 4.0)
|
52
|
+
rexml
|
51
53
|
ruby-progressbar (~> 1.7)
|
52
|
-
unicode-display_width (>= 1.4.0, <
|
54
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
53
55
|
ruby-progressbar (1.10.1)
|
54
56
|
thread_safe (0.3.6)
|
55
|
-
tzinfo (1.2.
|
57
|
+
tzinfo (1.2.7)
|
56
58
|
thread_safe (~> 0.1)
|
57
|
-
unicode-display_width (1.
|
58
|
-
zeitwerk (2.
|
59
|
+
unicode-display_width (1.7.0)
|
60
|
+
zeitwerk (2.3.0)
|
59
61
|
|
60
62
|
PLATFORMS
|
61
63
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- tknzk
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-04-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|