scim-kit 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +9 -0
- data/.github/workflows/ci.yml +28 -23
- data/.rubocop.yml +11 -0
- data/CHANGELOG.md +8 -2
- data/Gemfile.lock +88 -61
- data/README.md +2 -3
- data/Rakefile +0 -1
- data/bin/{lint → audit} +1 -3
- data/bin/setup +8 -6
- data/bin/shipit +0 -1
- data/bin/style +7 -0
- data/lib/scim/kit/http.rb +7 -6
- data/lib/scim/kit/v2/resource_type.rb +2 -2
- data/lib/scim/kit/v2/schema.rb +13 -3
- data/lib/scim/kit/version.rb +1 -1
- data/scim-kit.gemspec +3 -5
- metadata +17 -45
- data/.gitlab-ci.yml +0 -11
- data/bin/cibuild +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8191e7a73edef42d693bc7fee15fcb14036f37c6cb622aab488bf626fd490538
|
4
|
+
data.tar.gz: 2c26974e050b0e9b1515f0a138bbc566da7e9dc4f70b7c6323d26baa48b8af0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8efa5e84229bf10034fd39cdc31ea719d7cdb9e607f13ed220fa55a843423124cefa5f44b8b4c90bd5017366eda29b225bf88f551d00e7d8817c0d7489a745d
|
7
|
+
data.tar.gz: 20847130b08299715942567e64221ef142991f69f4f131e894c5e9c214c3939ad6eaf158dddcf193a6344219e8bc9e0d43a3daa237bc08efc0fb576ffec4ff94
|
data/.github/workflows/ci.yml
CHANGED
@@ -1,36 +1,41 @@
|
|
1
1
|
name: ci
|
2
|
-
on:
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches: [main]
|
5
|
+
pull_request:
|
6
|
+
branches: [main]
|
3
7
|
jobs:
|
4
|
-
|
8
|
+
test:
|
5
9
|
runs-on: ubuntu-latest
|
6
10
|
strategy:
|
7
11
|
matrix:
|
8
|
-
ruby: [
|
9
|
-
name: RSpec Ruby ${{ matrix.ruby }}
|
12
|
+
ruby-version: ['2.5', '2.6', '2.7', '3.0']
|
10
13
|
steps:
|
11
14
|
- uses: actions/checkout@v2
|
15
|
+
- name: Set up Ruby
|
16
|
+
uses: ruby/setup-ruby@v1
|
12
17
|
with:
|
13
|
-
|
14
|
-
|
15
|
-
-
|
16
|
-
|
17
|
-
|
18
|
-
- name: setup
|
19
|
-
run: ./bin/setup
|
20
|
-
- name: test
|
21
|
-
run: ./bin/test
|
22
|
-
lint:
|
18
|
+
ruby-version: ${{ matrix.ruby-version }}
|
19
|
+
- run: sh bin/setup
|
20
|
+
- name: Running tests…
|
21
|
+
run: sh bin/test
|
22
|
+
style:
|
23
23
|
runs-on: ubuntu-latest
|
24
|
-
name: Lint
|
25
24
|
steps:
|
26
25
|
- uses: actions/checkout@v2
|
26
|
+
- uses: ruby/setup-ruby@v1
|
27
27
|
with:
|
28
|
-
|
29
|
-
|
30
|
-
-
|
28
|
+
ruby-version: '3.0'
|
29
|
+
bundler-cache: true
|
30
|
+
- name: Running style checks…
|
31
|
+
run: sh bin/style
|
32
|
+
audit:
|
33
|
+
runs-on: ubuntu-latest
|
34
|
+
steps:
|
35
|
+
- uses: actions/checkout@v2
|
36
|
+
- uses: ruby/setup-ruby@v1
|
31
37
|
with:
|
32
|
-
ruby-version:
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
run: ./bin/lint
|
38
|
+
ruby-version: '3.0'
|
39
|
+
bundler-cache: true
|
40
|
+
- name: Running audit…
|
41
|
+
run: sh bin/audit
|
data/.rubocop.yml
CHANGED
@@ -43,6 +43,10 @@ Lint/RaiseException:
|
|
43
43
|
Lint/StructNewOverride:
|
44
44
|
Enabled: true
|
45
45
|
|
46
|
+
Metrics/AbcSize:
|
47
|
+
Exclude:
|
48
|
+
- 'lib/scim/kit/v2/service_provider_configuration.rb'
|
49
|
+
|
46
50
|
Metrics/BlockLength:
|
47
51
|
Exclude:
|
48
52
|
- '*.gemspec'
|
@@ -72,6 +76,10 @@ Style/HashTransformKeys:
|
|
72
76
|
Style/HashTransformValues:
|
73
77
|
Enabled: true
|
74
78
|
|
79
|
+
Style/IfUnlessModifier:
|
80
|
+
Exclude:
|
81
|
+
- 'lib/scim/kit/v2/attribute.rb'
|
82
|
+
|
75
83
|
Style/StringLiterals:
|
76
84
|
EnforcedStyle: 'single_quotes'
|
77
85
|
|
@@ -84,6 +92,9 @@ Style/TrailingCommaInHashLiteral:
|
|
84
92
|
RSpec/FilePath:
|
85
93
|
Enabled: false
|
86
94
|
|
95
|
+
RSpec/MultipleMemoizedHelpers:
|
96
|
+
Enabled: false
|
97
|
+
|
87
98
|
RSpec/NamedSubject:
|
88
99
|
Enabled: false
|
89
100
|
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Version 0.5.
|
1
|
+
Version 0.5.2
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
All notable changes to this project will be documented in this file.
|
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
8
8
|
|
9
9
|
## [Unreleased]
|
10
10
|
|
11
|
+
## [0.5.2] - 2020-05-20
|
12
|
+
### Fixed
|
13
|
+
|
14
|
+
- fix: Parse sub attributes from schema https://github.com/xlgmokha/scim-kit/pull/38
|
15
|
+
|
11
16
|
## [0.5.1] - 2020-05-20
|
12
17
|
### Fixed
|
13
18
|
- Specify `Accept: application/scim+json` header when discovering a SCIM API.
|
@@ -53,7 +58,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
53
58
|
- \_assign does not coerce values by default.
|
54
59
|
- errors are merged together instead of overwritten during attribute validation.
|
55
60
|
|
56
|
-
[Unreleased]: https://github.com/mokhan/scim-kit/compare/v0.5.
|
61
|
+
[Unreleased]: https://github.com/mokhan/scim-kit/compare/v0.5.2...HEAD
|
62
|
+
[0.5.2]: https://github.com/mokhan/scim-kit/compare/v0.5.1...v0.5.2
|
57
63
|
[0.5.1]: https://github.com/mokhan/scim-kit/compare/v0.5.0...v0.5.1
|
58
64
|
[0.5.0]: https://github.com/mokhan/scim-kit/compare/v0.4.0...v0.5.0
|
59
65
|
[0.4.0]: https://github.com/mokhan/scim-kit/compare/v0.3.2...v0.4.0
|
data/Gemfile.lock
CHANGED
@@ -1,97 +1,124 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
scim-kit (0.5.
|
5
|
-
activemodel (
|
6
|
-
net-hippie (~> 0
|
7
|
-
parslet (~>
|
4
|
+
scim-kit (0.5.2)
|
5
|
+
activemodel (~> 6.1)
|
6
|
+
net-hippie (~> 1.0)
|
7
|
+
parslet (~> 2.0)
|
8
8
|
tilt (~> 2.0)
|
9
9
|
tilt-jbuilder (~> 0.7)
|
10
10
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
|
15
|
-
activesupport (= 6.
|
16
|
-
|
14
|
+
actionview (6.1.4.4)
|
15
|
+
activesupport (= 6.1.4.4)
|
16
|
+
builder (~> 3.1)
|
17
|
+
erubi (~> 1.4)
|
18
|
+
rails-dom-testing (~> 2.0)
|
19
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
20
|
+
activemodel (6.1.4.4)
|
21
|
+
activesupport (= 6.1.4.4)
|
22
|
+
activesupport (6.1.4.4)
|
17
23
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
|
-
i18n (>=
|
19
|
-
minitest (
|
20
|
-
tzinfo (~>
|
21
|
-
zeitwerk (~> 2.
|
22
|
-
addressable (2.
|
24
|
+
i18n (>= 1.6, < 2)
|
25
|
+
minitest (>= 5.1)
|
26
|
+
tzinfo (~> 2.0)
|
27
|
+
zeitwerk (~> 2.3)
|
28
|
+
addressable (2.8.0)
|
23
29
|
public_suffix (>= 2.0.2, < 5.0)
|
24
|
-
ast (2.4.
|
25
|
-
|
30
|
+
ast (2.4.2)
|
31
|
+
builder (3.2.4)
|
32
|
+
bundler-audit (0.9.0.1)
|
26
33
|
bundler (>= 1.2.0, < 3)
|
27
|
-
thor (~> 0
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
diff-lcs (1.
|
33
|
-
|
34
|
+
thor (~> 1.0)
|
35
|
+
concurrent-ruby (1.1.9)
|
36
|
+
crack (0.4.5)
|
37
|
+
rexml
|
38
|
+
crass (1.0.6)
|
39
|
+
diff-lcs (1.5.0)
|
40
|
+
erubi (1.10.0)
|
41
|
+
ffaker (2.20.0)
|
34
42
|
hashdiff (1.0.1)
|
35
|
-
i18n (1.8.
|
43
|
+
i18n (1.8.11)
|
36
44
|
concurrent-ruby (~> 1.0)
|
37
|
-
jbuilder (2.
|
45
|
+
jbuilder (2.11.5)
|
46
|
+
actionview (>= 5.0.0)
|
38
47
|
activesupport (>= 5.0.0)
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
48
|
+
loofah (2.13.0)
|
49
|
+
crass (~> 1.0.2)
|
50
|
+
nokogiri (>= 1.5.9)
|
51
|
+
mini_portile2 (2.6.1)
|
52
|
+
minitest (5.15.0)
|
53
|
+
net-hippie (1.1.1)
|
54
|
+
nokogiri (1.12.5)
|
55
|
+
mini_portile2 (~> 2.6.1)
|
56
|
+
racc (~> 1.4)
|
57
|
+
nokogiri (1.12.5-x86_64-linux)
|
58
|
+
racc (~> 1.4)
|
59
|
+
parallel (1.21.0)
|
60
|
+
parser (3.1.0.0)
|
61
|
+
ast (~> 2.4.1)
|
62
|
+
parslet (2.0.0)
|
63
|
+
public_suffix (4.0.6)
|
64
|
+
racc (1.6.0)
|
65
|
+
rails-dom-testing (2.0.3)
|
66
|
+
activesupport (>= 4.2.0)
|
67
|
+
nokogiri (>= 1.6)
|
68
|
+
rails-html-sanitizer (1.4.2)
|
69
|
+
loofah (~> 2.3)
|
70
|
+
rainbow (3.1.1)
|
71
|
+
rake (13.0.6)
|
72
|
+
regexp_parser (2.2.0)
|
73
|
+
rexml (3.2.5)
|
74
|
+
rspec (3.10.0)
|
75
|
+
rspec-core (~> 3.10.0)
|
76
|
+
rspec-expectations (~> 3.10.0)
|
77
|
+
rspec-mocks (~> 3.10.0)
|
78
|
+
rspec-core (3.10.1)
|
79
|
+
rspec-support (~> 3.10.0)
|
80
|
+
rspec-expectations (3.10.2)
|
56
81
|
diff-lcs (>= 1.2.0, < 2.0)
|
57
|
-
rspec-support (~> 3.
|
58
|
-
rspec-mocks (3.
|
82
|
+
rspec-support (~> 3.10.0)
|
83
|
+
rspec-mocks (3.10.2)
|
59
84
|
diff-lcs (>= 1.2.0, < 2.0)
|
60
|
-
rspec-support (~> 3.
|
61
|
-
rspec-support (3.
|
62
|
-
rubocop (0.
|
85
|
+
rspec-support (~> 3.10.0)
|
86
|
+
rspec-support (3.10.3)
|
87
|
+
rubocop (0.93.1)
|
63
88
|
parallel (~> 1.10)
|
64
|
-
parser (>= 2.7.
|
89
|
+
parser (>= 2.7.1.5)
|
65
90
|
rainbow (>= 2.2.2, < 4.0)
|
91
|
+
regexp_parser (>= 1.8)
|
66
92
|
rexml
|
93
|
+
rubocop-ast (>= 0.6.0)
|
67
94
|
ruby-progressbar (~> 1.7)
|
68
95
|
unicode-display_width (>= 1.4.0, < 2.0)
|
69
|
-
rubocop-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
96
|
+
rubocop-ast (1.15.1)
|
97
|
+
parser (>= 3.0.1.1)
|
98
|
+
rubocop-rspec (1.44.1)
|
99
|
+
rubocop (~> 0.87)
|
100
|
+
rubocop-ast (>= 0.7.1)
|
101
|
+
ruby-progressbar (1.11.0)
|
102
|
+
thor (1.2.1)
|
75
103
|
tilt (2.0.10)
|
76
104
|
tilt-jbuilder (0.7.1)
|
77
105
|
jbuilder
|
78
106
|
tilt (>= 1.3.0, < 3)
|
79
|
-
tzinfo (
|
80
|
-
|
81
|
-
unicode-display_width (1.
|
82
|
-
webmock (3.
|
83
|
-
addressable (>= 2.
|
107
|
+
tzinfo (2.0.4)
|
108
|
+
concurrent-ruby (~> 1.0)
|
109
|
+
unicode-display_width (1.8.0)
|
110
|
+
webmock (3.14.0)
|
111
|
+
addressable (>= 2.8.0)
|
84
112
|
crack (>= 0.3.2)
|
85
113
|
hashdiff (>= 0.4.0, < 2.0.0)
|
86
|
-
zeitwerk (2.3
|
114
|
+
zeitwerk (2.5.3)
|
87
115
|
|
88
116
|
PLATFORMS
|
89
117
|
ruby
|
118
|
+
x86_64-linux
|
90
119
|
|
91
120
|
DEPENDENCIES
|
92
|
-
bundler (~> 2.0)
|
93
121
|
bundler-audit (~> 0.6)
|
94
|
-
byebug
|
95
122
|
ffaker (~> 2.7)
|
96
123
|
rake (~> 13.0)
|
97
124
|
rspec (~> 3.0)
|
@@ -101,4 +128,4 @@ DEPENDENCIES
|
|
101
128
|
webmock (~> 3.5)
|
102
129
|
|
103
130
|
BUNDLED WITH
|
104
|
-
2.
|
131
|
+
2.3.6
|
data/README.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# Scim::Kit
|
2
2
|
|
3
|
-
[![Build Status](https://github.com/
|
4
|
-
[![Code Climate](https://codeclimate.com/github/mokhan/scim-kit.svg)](https://codeclimate.com/github/mokhan/scim-kit)
|
3
|
+
[![Build Status](https://github.com/xlgmokha/scim-kit/workflows/ci/badge.svg)](https://github.com/xlgmokha/scim-kit/actions)
|
5
4
|
[![Gem Version](https://badge.fury.io/rb/scim-kit.svg)](https://rubygems.org/gems/scim-kit)
|
6
5
|
|
7
6
|
Scim::Kit is a library with the purpose of simplifying the generation
|
@@ -87,7 +86,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
87
86
|
|
88
87
|
## Contributing
|
89
88
|
|
90
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
89
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/xlgmokha/scim-kit.
|
91
90
|
|
92
91
|
## License
|
93
92
|
|
data/Rakefile
CHANGED
data/bin/{lint → audit}
RENAMED
data/bin/setup
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
-
#!/
|
2
|
-
set -euo pipefail
|
3
|
-
IFS=$'\n\t'
|
1
|
+
#!/bin/sh
|
4
2
|
|
5
|
-
|
6
|
-
|
7
|
-
|
3
|
+
set -e
|
4
|
+
|
5
|
+
cd "$(dirname "$0")/.."
|
6
|
+
|
7
|
+
gem update --system
|
8
|
+
gem install bundler
|
9
|
+
bundle install
|
data/bin/shipit
CHANGED
data/bin/style
ADDED
data/lib/scim/kit/http.rb
CHANGED
@@ -21,12 +21,13 @@ module Scim
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def self.default_driver
|
24
|
-
@default_driver ||= Net::Hippie::Client.new(
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
24
|
+
@default_driver ||= Net::Hippie::Client.new(
|
25
|
+
follow_redirects: 3,
|
26
|
+
headers: headers,
|
27
|
+
logger: Scim::Kit.logger,
|
28
|
+
open_timeout: 1,
|
29
|
+
read_timeout: 5
|
30
|
+
)
|
30
31
|
end
|
31
32
|
|
32
33
|
def self.headers
|
data/lib/scim/kit/v2/schema.rb
CHANGED
@@ -31,8 +31,8 @@ module Scim
|
|
31
31
|
end
|
32
32
|
|
33
33
|
class << self
|
34
|
-
def build(
|
35
|
-
item = new(
|
34
|
+
def build(**args)
|
35
|
+
item = new(**args)
|
36
36
|
yield item
|
37
37
|
item
|
38
38
|
end
|
@@ -45,7 +45,7 @@ module Scim
|
|
45
45
|
) do |x|
|
46
46
|
x.meta = Meta.from(hash[:meta])
|
47
47
|
hash[:attributes].each do |y|
|
48
|
-
x.attributes <<
|
48
|
+
x.attributes << parse_attribute_type(y)
|
49
49
|
end
|
50
50
|
end
|
51
51
|
end
|
@@ -53,6 +53,16 @@ module Scim
|
|
53
53
|
def parse(json)
|
54
54
|
from(JSON.parse(json, symbolize_names: true))
|
55
55
|
end
|
56
|
+
|
57
|
+
private
|
58
|
+
|
59
|
+
def parse_attribute_type(hash)
|
60
|
+
attribute_type = AttributeType.from(hash)
|
61
|
+
hash[:subAttributes]&.each do |sub_attr_hash|
|
62
|
+
attribute_type.attributes << parse_attribute_type(sub_attr_hash)
|
63
|
+
end
|
64
|
+
attribute_type
|
65
|
+
end
|
56
66
|
end
|
57
67
|
end
|
58
68
|
end
|
data/lib/scim/kit/version.rb
CHANGED
data/scim-kit.gemspec
CHANGED
@@ -30,14 +30,12 @@ Gem::Specification.new do |spec|
|
|
30
30
|
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
|
31
31
|
spec.metadata['yard.run'] = 'yri'
|
32
32
|
|
33
|
-
spec.add_dependency 'activemodel', '
|
34
|
-
spec.add_dependency 'net-hippie', '~> 0
|
35
|
-
spec.add_dependency 'parslet', '~>
|
33
|
+
spec.add_dependency 'activemodel', '~> 6.1'
|
34
|
+
spec.add_dependency 'net-hippie', '~> 1.0'
|
35
|
+
spec.add_dependency 'parslet', '~> 2.0'
|
36
36
|
spec.add_dependency 'tilt', '~> 2.0'
|
37
37
|
spec.add_dependency 'tilt-jbuilder', '~> 0.7'
|
38
|
-
spec.add_development_dependency 'bundler', '~> 2.0'
|
39
38
|
spec.add_development_dependency 'bundler-audit', '~> 0.6'
|
40
|
-
spec.add_development_dependency 'byebug'
|
41
39
|
spec.add_development_dependency 'ffaker', '~> 2.7'
|
42
40
|
spec.add_development_dependency 'rake', '~> 13.0'
|
43
41
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
metadata
CHANGED
@@ -1,57 +1,57 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scim-kit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mo
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: '6.1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: '6.1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: net-hippie
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '0
|
33
|
+
version: '1.0'
|
34
34
|
type: :runtime
|
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: '0
|
40
|
+
version: '1.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: parslet
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '2.0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '2.0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: tilt
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,20 +80,6 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0.7'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: bundler
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - "~>"
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '2.0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - "~>"
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '2.0'
|
97
83
|
- !ruby/object:Gem::Dependency
|
98
84
|
name: bundler-audit
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,20 +94,6 @@ dependencies:
|
|
108
94
|
- - "~>"
|
109
95
|
- !ruby/object:Gem::Version
|
110
96
|
version: '0.6'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: byebug
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - ">="
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
118
|
-
type: :development
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - ">="
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '0'
|
125
97
|
- !ruby/object:Gem::Dependency
|
126
98
|
name: ffaker
|
127
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -214,9 +186,9 @@ executables:
|
|
214
186
|
extensions: []
|
215
187
|
extra_rdoc_files: []
|
216
188
|
files:
|
189
|
+
- ".github/dependabot.yml"
|
217
190
|
- ".github/workflows/ci.yml"
|
218
191
|
- ".gitignore"
|
219
|
-
- ".gitlab-ci.yml"
|
220
192
|
- ".rspec"
|
221
193
|
- ".rubocop.yml"
|
222
194
|
- CHANGELOG.md
|
@@ -225,11 +197,11 @@ files:
|
|
225
197
|
- LICENSE.txt
|
226
198
|
- README.md
|
227
199
|
- Rakefile
|
228
|
-
- bin/
|
200
|
+
- bin/audit
|
229
201
|
- bin/console
|
230
|
-
- bin/lint
|
231
202
|
- bin/setup
|
232
203
|
- bin/shipit
|
204
|
+
- bin/style
|
233
205
|
- bin/test
|
234
206
|
- exe/scim-kit
|
235
207
|
- lib/scim-kit.rb
|
@@ -278,7 +250,7 @@ licenses:
|
|
278
250
|
- MIT
|
279
251
|
metadata:
|
280
252
|
yard.run: yri
|
281
|
-
post_install_message:
|
253
|
+
post_install_message:
|
282
254
|
rdoc_options: []
|
283
255
|
require_paths:
|
284
256
|
- lib
|
@@ -293,8 +265,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
293
265
|
- !ruby/object:Gem::Version
|
294
266
|
version: '0'
|
295
267
|
requirements: []
|
296
|
-
rubygems_version: 3.
|
297
|
-
signing_key:
|
268
|
+
rubygems_version: 3.3.6
|
269
|
+
signing_key:
|
298
270
|
specification_version: 4
|
299
271
|
summary: A simple toolkit for working with SCIM 2.0
|
300
272
|
test_files: []
|
data/.gitlab-ci.yml
DELETED
data/bin/cibuild
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
|
3
|
-
set -e
|
4
|
-
|
5
|
-
[ -z "$DEBUG" ] || set -x
|
6
|
-
|
7
|
-
cd "$(dirname "$0")/.."
|
8
|
-
export RUBY_GC_MALLOC_LIMIT=79000000
|
9
|
-
export RUBY_GC_HEAP_INIT_SLOTS=800000
|
10
|
-
export RUBY_HEAP_FREE_MIN=100000
|
11
|
-
export RUBY_HEAP_SLOTS_INCREMENT=400000
|
12
|
-
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
|
13
|
-
|
14
|
-
echo ["$(date "+%H:%M:%S")"] "==> Running setup…"
|
15
|
-
bin/setup
|
16
|
-
|
17
|
-
echo ["$(date "+%H:%M:%S")"] "==> Running tests…"
|
18
|
-
bin/test
|
19
|
-
|
20
|
-
echo ["$(date "+%H:%M:%S")"] "==> Running linters…"
|
21
|
-
bin/lint
|