scim-kit 0.7.1 → 0.8.0

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: 6c3387262115568567b66e8b8841b1ee4cc2b5b6ae9907a0fbe6ba8d6b370527
4
- data.tar.gz: 7d68e2ee54e4ea77afbbd6917ff88465d1f1159a4c9875d3cfc646ded9b59fcb
3
+ metadata.gz: 568381efd93a4eb3e30d702b64821eeb34f831f602946dabdb7d9b5f05adb180
4
+ data.tar.gz: 758ef6b57fffaff2633084311676c9e596dcd10161f25815435741ba593ae254
5
5
  SHA512:
6
- metadata.gz: 04652d7191799e43a400626471672c39fd29939bd7c7b6b84bc756a77262de54e74d624064e2ada5afd8edb0ef4e1bc4eb1137b065d3f64c2f1db7669303d359
7
- data.tar.gz: cfb017b66a7fb18a3f97bde84043efb158015e8d3bd0b266146e203e5335e4f6aba6bc3d6abb082d124aacf83cd3707e97125b831f39ed7f1c88b60f511c15db
6
+ metadata.gz: c01f79fa3e8a368f0271b09deefbae55246490d2b1e23cd4b6a11cfa51585b24189f5111317da16575bdf17ca793e06a528332d8c7b5feed2686fd3e91a5e3a8
7
+ data.tar.gz: c96000e669171c23110f4a71c287452edc3b6f15a993515be0cae4ca850f7c06592419f3396412e75b82250af4ff83a718f88acb6477e5d38650cb26d7ced85d
@@ -9,7 +9,7 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
  strategy:
11
11
  matrix:
12
- ruby-version: ['2.7', '3.0', '3.1']
12
+ ruby-version: ['3.2', '3.3', '3.4']
13
13
  steps:
14
14
  - uses: actions/checkout@v2
15
15
  - name: Set up Ruby
@@ -25,7 +25,7 @@ jobs:
25
25
  - uses: actions/checkout@v2
26
26
  - uses: ruby/setup-ruby@v1
27
27
  with:
28
- ruby-version: '3.0'
28
+ ruby-version: '3.2'
29
29
  bundler-cache: true
30
30
  - name: Running style checks…
31
31
  run: sh bin/style
@@ -35,7 +35,7 @@ jobs:
35
35
  - uses: actions/checkout@v2
36
36
  - uses: ruby/setup-ruby@v1
37
37
  with:
38
- ruby-version: '3.0'
38
+ ruby-version: '3.2'
39
39
  bundler-cache: true
40
40
  - name: Running audit…
41
41
  run: sh bin/audit
data/.rubocop.yml CHANGED
@@ -7,7 +7,7 @@ AllCops:
7
7
  - 'pkg/**/*'
8
8
  - 'tmp/**/*'
9
9
  - 'vendor/**/*'
10
- TargetRubyVersion: 2.7
10
+ TargetRubyVersion: 3.2
11
11
 
12
12
  Layout/ArgumentAlignment:
13
13
  EnforcedStyle: with_fixed_indentation
@@ -23,6 +23,7 @@ Layout/LineLength:
23
23
  - 'spec/**/*.rb'
24
24
  IgnoredPatterns:
25
25
  - '^#*'
26
+ Max: 80
26
27
 
27
28
  Layout/MultilineMethodCallIndentation:
28
29
  Enabled: true
@@ -37,6 +38,10 @@ Lint/AmbiguousBlockAssociation:
37
38
  Exclude:
38
39
  - 'spec/**/*.rb'
39
40
 
41
+ Lint/EmptyFile:
42
+ Exclude:
43
+ - 'lib/scim/kit/v2/templates/nil_class.json.jbuilder'
44
+
40
45
  Lint/RaiseException:
41
46
  Enabled: true
42
47
 
@@ -64,6 +69,9 @@ Naming/FileName:
64
69
  Naming/RescuedExceptionsVariableName:
65
70
  PreferredName: error
66
71
 
72
+ Style/AccessorGrouping:
73
+ Enabled: false
74
+
67
75
  Style/Documentation:
68
76
  Enabled: false
69
77
 
@@ -83,6 +91,9 @@ Style/IfUnlessModifier:
83
91
  Style/StringLiterals:
84
92
  EnforcedStyle: 'single_quotes'
85
93
 
94
+ Style/SymbolProc:
95
+ Enabled: false
96
+
86
97
  Style/TrailingCommaInArrayLiteral:
87
98
  Enabled: false
88
99
 
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- Version 0.7.1
1
+ Version 0.8.0
2
2
 
3
3
  # Changelog
4
4
  All notable changes to this project will be documented in this file.
@@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.8.0] - 2026-03-31
12
+ ### Changed
13
+ - Allow using activemodel version 8+
14
+
15
+ ## [0.7.2] - 2024-12-05
16
+ ### Fixed
17
+ - Change references to string during validation
18
+
11
19
  ## [0.7.1] - 2022-12-12
12
20
  ### Fixed
13
21
  - Add support for duplicate attribute names
@@ -85,7 +93,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
85
93
  - \_assign does not coerce values by default.
86
94
  - errors are merged together instead of overwritten during attribute validation.
87
95
 
88
- [Unreleased]: https://github.com/xlgmokha/scim-kit/compare/v0.7.1...HEAD
96
+ [Unreleased]: https://github.com/xlgmokha/scim-kit/compare/v0.8.0...HEAD
97
+ [0.8.0]: https://github.com/xlgmokha/scim-kit/compare/v0.7.2...v0.8.0
98
+ [0.7.2]: https://github.com/xlgmokha/scim-kit/compare/v0.7.1...v0.7.2
89
99
  [0.7.1]: https://github.com/xlgmokha/scim-kit/compare/v0.7.0...v0.7.1
90
100
  [0.7.0]: https://github.com/xlgmokha/scim-kit/compare/v0.6.0...v0.7.0
91
101
  [0.6.0]: https://github.com/xlgmokha/scim-kit/compare/v0.5.3...v0.6.0
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- scim-kit (0.7.1)
5
- activemodel (>= 6.1, < 8.0)
4
+ scim-kit (0.8.0)
5
+ activemodel (>= 6.1)
6
6
  net-hippie (~> 1.0)
7
7
  parslet (~> 2.0)
8
8
  tilt (~> 2.0)
@@ -11,108 +11,157 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actionview (7.0.4)
15
- activesupport (= 7.0.4)
14
+ actionview (8.0.0)
15
+ activesupport (= 8.0.0)
16
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 (7.0.4)
21
- activesupport (= 7.0.4)
22
- activesupport (7.0.4)
23
- concurrent-ruby (~> 1.0, >= 1.0.2)
17
+ erubi (~> 1.11)
18
+ rails-dom-testing (~> 2.2)
19
+ rails-html-sanitizer (~> 1.6)
20
+ activemodel (8.0.0)
21
+ activesupport (= 8.0.0)
22
+ activesupport (8.0.0)
23
+ base64
24
+ benchmark (>= 0.3)
25
+ bigdecimal
26
+ concurrent-ruby (~> 1.0, >= 1.3.1)
27
+ connection_pool (>= 2.2.5)
28
+ drb
24
29
  i18n (>= 1.6, < 2)
30
+ logger (>= 1.4.2)
25
31
  minitest (>= 5.1)
26
- tzinfo (~> 2.0)
27
- addressable (2.8.1)
28
- public_suffix (>= 2.0.2, < 6.0)
32
+ securerandom (>= 0.3)
33
+ tzinfo (~> 2.0, >= 2.0.5)
34
+ uri (>= 0.13.1)
35
+ addressable (2.8.7)
36
+ public_suffix (>= 2.0.2, < 7.0)
29
37
  ast (2.4.2)
30
- builder (3.2.4)
31
- bundler-audit (0.9.1)
38
+ base64 (0.2.0)
39
+ benchmark (0.4.0)
40
+ bigdecimal (3.1.8)
41
+ builder (3.3.0)
42
+ bundler-audit (0.9.2)
32
43
  bundler (>= 1.2.0, < 3)
33
44
  thor (~> 1.0)
34
- concurrent-ruby (1.1.10)
35
- crack (0.4.5)
45
+ concurrent-ruby (1.3.4)
46
+ connection_pool (2.4.1)
47
+ crack (1.0.0)
48
+ bigdecimal
36
49
  rexml
37
50
  crass (1.0.6)
38
- diff-lcs (1.5.0)
39
- erubi (1.11.0)
40
- ffaker (2.21.0)
41
- hashdiff (1.0.1)
42
- i18n (1.12.0)
51
+ diff-lcs (1.5.1)
52
+ drb (2.2.1)
53
+ erubi (1.13.0)
54
+ ffaker (2.23.0)
55
+ hashdiff (1.1.2)
56
+ i18n (1.14.6)
43
57
  concurrent-ruby (~> 1.0)
44
- jbuilder (2.11.5)
58
+ jbuilder (2.13.0)
45
59
  actionview (>= 5.0.0)
46
60
  activesupport (>= 5.0.0)
47
- loofah (2.18.0)
61
+ json (2.9.0)
62
+ language_server-protocol (3.17.0.3)
63
+ logger (1.6.2)
64
+ loofah (2.23.1)
48
65
  crass (~> 1.0.2)
49
- nokogiri (>= 1.5.9)
50
- mini_portile2 (2.8.0)
51
- minitest (5.16.3)
52
- net-hippie (1.1.1)
53
- nokogiri (1.13.10)
54
- mini_portile2 (~> 2.8.0)
66
+ nokogiri (>= 1.12.0)
67
+ mini_portile2 (2.8.9)
68
+ minitest (6.0.2)
69
+ drb (~> 2.0)
70
+ prism (~> 1.5)
71
+ net-hippie (1.2.0)
72
+ logger (~> 1.0)
73
+ nokogiri (1.19.2)
74
+ mini_portile2 (~> 2.8.2)
55
75
  racc (~> 1.4)
56
- nokogiri (1.13.10-x86_64-linux)
76
+ nokogiri (1.19.2-aarch64-linux-gnu)
57
77
  racc (~> 1.4)
58
- parallel (1.21.0)
59
- parser (3.1.0.0)
78
+ nokogiri (1.19.2-arm-linux-gnu)
79
+ racc (~> 1.4)
80
+ nokogiri (1.19.2-arm64-darwin)
81
+ racc (~> 1.4)
82
+ nokogiri (1.19.2-x86_64-darwin)
83
+ racc (~> 1.4)
84
+ nokogiri (1.19.2-x86_64-linux-gnu)
85
+ racc (~> 1.4)
86
+ parallel (1.26.3)
87
+ parser (3.3.6.0)
60
88
  ast (~> 2.4.1)
89
+ racc
61
90
  parslet (2.0.0)
62
- public_suffix (5.0.0)
63
- racc (1.6.0)
64
- rails-dom-testing (2.0.3)
65
- activesupport (>= 4.2.0)
91
+ prism (1.9.0)
92
+ public_suffix (6.0.1)
93
+ racc (1.8.1)
94
+ rails-dom-testing (2.2.0)
95
+ activesupport (>= 5.0.0)
96
+ minitest
66
97
  nokogiri (>= 1.6)
67
- rails-html-sanitizer (1.4.3)
68
- loofah (~> 2.3)
98
+ rails-html-sanitizer (1.6.1)
99
+ loofah (~> 2.21)
100
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
69
101
  rainbow (3.1.1)
70
- rake (13.0.6)
71
- regexp_parser (2.2.0)
72
- rexml (3.2.5)
73
- rspec (3.12.0)
74
- rspec-core (~> 3.12.0)
75
- rspec-expectations (~> 3.12.0)
76
- rspec-mocks (~> 3.12.0)
77
- rspec-core (3.12.0)
78
- rspec-support (~> 3.12.0)
79
- rspec-expectations (3.12.0)
102
+ rake (13.2.1)
103
+ regexp_parser (2.9.3)
104
+ rexml (3.4.4)
105
+ rspec (3.13.0)
106
+ rspec-core (~> 3.13.0)
107
+ rspec-expectations (~> 3.13.0)
108
+ rspec-mocks (~> 3.13.0)
109
+ rspec-core (3.13.2)
110
+ rspec-support (~> 3.13.0)
111
+ rspec-expectations (3.13.3)
80
112
  diff-lcs (>= 1.2.0, < 2.0)
81
- rspec-support (~> 3.12.0)
82
- rspec-mocks (3.12.0)
113
+ rspec-support (~> 3.13.0)
114
+ rspec-mocks (3.13.2)
83
115
  diff-lcs (>= 1.2.0, < 2.0)
84
- rspec-support (~> 3.12.0)
85
- rspec-support (3.12.0)
86
- rubocop (0.93.1)
116
+ rspec-support (~> 3.13.0)
117
+ rspec-support (3.13.2)
118
+ rubocop (1.69.1)
119
+ json (~> 2.3)
120
+ language_server-protocol (>= 3.17.0)
87
121
  parallel (~> 1.10)
88
- parser (>= 2.7.1.5)
122
+ parser (>= 3.3.0.2)
89
123
  rainbow (>= 2.2.2, < 4.0)
90
- regexp_parser (>= 1.8)
91
- rexml
92
- rubocop-ast (>= 0.6.0)
124
+ regexp_parser (>= 2.9.3, < 3.0)
125
+ rubocop-ast (>= 1.36.2, < 2.0)
93
126
  ruby-progressbar (~> 1.7)
94
- unicode-display_width (>= 1.4.0, < 2.0)
95
- rubocop-ast (1.15.1)
96
- parser (>= 3.0.1.1)
97
- rubocop-rspec (1.44.1)
98
- rubocop (~> 0.87)
99
- rubocop-ast (>= 0.7.1)
100
- ruby-progressbar (1.11.0)
101
- thor (1.2.1)
102
- tilt (2.0.11)
127
+ unicode-display_width (>= 2.4.0, < 4.0)
128
+ rubocop-ast (1.36.2)
129
+ parser (>= 3.3.1.0)
130
+ rubocop-capybara (2.21.0)
131
+ rubocop (~> 1.41)
132
+ rubocop-factory_bot (2.26.1)
133
+ rubocop (~> 1.61)
134
+ rubocop-rspec (2.31.0)
135
+ rubocop (~> 1.40)
136
+ rubocop-capybara (~> 2.17)
137
+ rubocop-factory_bot (~> 2.22)
138
+ rubocop-rspec_rails (~> 2.28)
139
+ rubocop-rspec_rails (2.29.1)
140
+ rubocop (~> 1.61)
141
+ ruby-progressbar (1.13.0)
142
+ securerandom (0.4.0)
143
+ thor (1.5.0)
144
+ tilt (2.4.0)
103
145
  tilt-jbuilder (0.7.1)
104
146
  jbuilder
105
147
  tilt (>= 1.3.0, < 3)
106
- tzinfo (2.0.5)
148
+ tzinfo (2.0.6)
107
149
  concurrent-ruby (~> 1.0)
108
- unicode-display_width (1.8.0)
109
- webmock (3.18.1)
150
+ unicode-display_width (3.1.2)
151
+ unicode-emoji (~> 4.0, >= 4.0.4)
152
+ unicode-emoji (4.2.0)
153
+ uri (1.1.1)
154
+ webmock (3.24.0)
110
155
  addressable (>= 2.8.0)
111
156
  crack (>= 0.3.2)
112
157
  hashdiff (>= 0.4.0, < 2.0.0)
113
158
 
114
159
  PLATFORMS
115
- ruby
160
+ aarch64-linux
161
+ arm-linux
162
+ arm64-darwin
163
+ x86-linux
164
+ x86_64-darwin
116
165
  x86_64-linux
117
166
 
118
167
  DEPENDENCIES
@@ -120,10 +169,10 @@ DEPENDENCIES
120
169
  ffaker (~> 2.7)
121
170
  rake (~> 13.0)
122
171
  rspec (~> 3.0)
123
- rubocop (~> 0.52)
124
- rubocop-rspec (~> 1.22)
172
+ rubocop (~> 1.0)
173
+ rubocop-rspec (~> 2.0)
125
174
  scim-kit!
126
175
  webmock (~> 3.5)
127
176
 
128
177
  BUNDLED WITH
129
- 2.3.6
178
+ 2.5.23
@@ -66,10 +66,8 @@ module Scim
66
66
 
67
67
  # yields each attribute to the provided block
68
68
  # @param [Block] the block to yield each attribute to.
69
- def each
70
- dynamic_attributes.each do |_name, attribute|
71
- yield attribute
72
- end
69
+ def each(&block)
70
+ dynamic_attributes.each_value(&block)
73
71
  end
74
72
 
75
73
  private
@@ -5,12 +5,12 @@ module Scim
5
5
  module V2
6
6
  module Messages
7
7
  CORE = 'urn:ietf:params:scim:api:messages:2.0'
8
- BULK_REQUEST = "#{CORE}:BulkRequest"
9
- BULK_RESPONSE = "#{CORE}:BulkResponse"
10
- ERROR = "#{CORE}:Error"
11
- LIST_RESPONSE = "#{CORE}:ListResponse"
12
- PATCH_OP = "#{CORE}:PatchOp"
13
- SEARCH_REQUEST = "#{CORE}:SearchRequest"
8
+ BULK_REQUEST = "#{CORE}:BulkRequest".freeze
9
+ BULK_RESPONSE = "#{CORE}:BulkResponse".freeze
10
+ ERROR = "#{CORE}:Error".freeze
11
+ LIST_RESPONSE = "#{CORE}:ListResponse".freeze
12
+ PATCH_OP = "#{CORE}:PatchOp".freeze
13
+ SEARCH_REQUEST = "#{CORE}:SearchRequest".freeze
14
14
  end
15
15
  end
16
16
  end
@@ -6,14 +6,14 @@ module Scim
6
6
  module Schemas
7
7
  ROOT = 'urn:ietf:params:scim:schemas'
8
8
 
9
- CORE = "#{ROOT}:core:2.0"
10
- EXTENSION = "#{ROOT}:extension"
11
- ENTERPRISE_USER = "#{EXTENSION}:enterprise:2.0:User"
12
- GROUP = "#{CORE}:Group"
13
- RESOURCE_TYPE = "#{CORE}:ResourceType"
14
- SCHEMA = "#{CORE}:Schema"
15
- SERVICE_PROVIDER_CONFIGURATION = "#{CORE}:ServiceProviderConfig"
16
- USER = "#{CORE}:User"
9
+ CORE = "#{ROOT}:core:2.0".freeze
10
+ EXTENSION = "#{ROOT}:extension".freeze
11
+ ENTERPRISE_USER = "#{EXTENSION}:enterprise:2.0:User".freeze
12
+ GROUP = "#{CORE}:Group".freeze
13
+ RESOURCE_TYPE = "#{CORE}:ResourceType".freeze
14
+ SCHEMA = "#{CORE}:Schema".freeze
15
+ SERVICE_PROVIDER_CONFIGURATION = "#{CORE}:ServiceProviderConfig".freeze
16
+ USER = "#{CORE}:User".freeze
17
17
  end
18
18
  end
19
19
  end
data/lib/scim/kit/v2.rb CHANGED
@@ -29,7 +29,7 @@ module Scim
29
29
  module V2
30
30
  BASE64 = %r(
31
31
  \A([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?\Z
32
- )x.freeze
32
+ )x
33
33
  BOOLEAN_VALUES = [true, false].freeze
34
34
  DATATYPES = {
35
35
  string: 'string',
@@ -68,7 +68,7 @@ module Scim
68
68
  false
69
69
  end
70
70
  },
71
- reference: ->(x) { x =~ /\A#{URI::DEFAULT_PARSER.make_regexp(%w[http https])}\z/ },
71
+ reference: ->(x) { x&.to_s =~ /\A#{URI::DEFAULT_PARSER.make_regexp(%w[http https])}\z/ },
72
72
  string: ->(x) { x.is_a?(String) }
73
73
  }.freeze
74
74
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Scim
4
4
  module Kit
5
- VERSION = '0.7.1'
5
+ VERSION = '0.8.0'
6
6
  end
7
7
  end
data/lib/scim/kit.rb CHANGED
@@ -25,7 +25,7 @@ module Scim
25
25
  TYPE_ERROR = ArgumentError.new(:type)
26
26
 
27
27
  def self.logger
28
- @logger ||= Logger.new(STDOUT)
28
+ @logger ||= Logger.new($stdout)
29
29
  end
30
30
 
31
31
  def self.logger=(logger)
data/scim-kit.gemspec CHANGED
@@ -27,10 +27,10 @@ Gem::Specification.new do |spec|
27
27
  File.basename(file)
28
28
  end
29
29
  spec.require_paths = ['lib']
30
- spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
30
+ spec.required_ruby_version = Gem::Requirement.new('>= 3.2.0')
31
31
  spec.metadata['yard.run'] = 'yri'
32
32
 
33
- spec.add_dependency 'activemodel', '>= 6.1', '< 8.0'
33
+ spec.add_dependency 'activemodel', '>= 6.1'
34
34
  spec.add_dependency 'net-hippie', '~> 1.0'
35
35
  spec.add_dependency 'parslet', '~> 2.0'
36
36
  spec.add_dependency 'tilt', '~> 2.0'
@@ -39,7 +39,7 @@ Gem::Specification.new do |spec|
39
39
  spec.add_development_dependency 'ffaker', '~> 2.7'
40
40
  spec.add_development_dependency 'rake', '~> 13.0'
41
41
  spec.add_development_dependency 'rspec', '~> 3.0'
42
- spec.add_development_dependency 'rubocop', '~> 0.52'
43
- spec.add_development_dependency 'rubocop-rspec', '~> 1.22'
42
+ spec.add_development_dependency 'rubocop', '~> 1.0'
43
+ spec.add_development_dependency 'rubocop-rspec', '~> 2.0'
44
44
  spec.add_development_dependency 'webmock', '~> 3.5'
45
45
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scim-kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - mo
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2022-12-12 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activemodel
@@ -17,9 +16,6 @@ dependencies:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
18
  version: '6.1'
20
- - - "<"
21
- - !ruby/object:Gem::Version
22
- version: '8.0'
23
19
  type: :runtime
24
20
  prerelease: false
25
21
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,9 +23,6 @@ dependencies:
27
23
  - - ">="
28
24
  - !ruby/object:Gem::Version
29
25
  version: '6.1'
30
- - - "<"
31
- - !ruby/object:Gem::Version
32
- version: '8.0'
33
26
  - !ruby/object:Gem::Dependency
34
27
  name: net-hippie
35
28
  requirement: !ruby/object:Gem::Requirement
@@ -148,28 +141,28 @@ dependencies:
148
141
  requirements:
149
142
  - - "~>"
150
143
  - !ruby/object:Gem::Version
151
- version: '0.52'
144
+ version: '1.0'
152
145
  type: :development
153
146
  prerelease: false
154
147
  version_requirements: !ruby/object:Gem::Requirement
155
148
  requirements:
156
149
  - - "~>"
157
150
  - !ruby/object:Gem::Version
158
- version: '0.52'
151
+ version: '1.0'
159
152
  - !ruby/object:Gem::Dependency
160
153
  name: rubocop-rspec
161
154
  requirement: !ruby/object:Gem::Requirement
162
155
  requirements:
163
156
  - - "~>"
164
157
  - !ruby/object:Gem::Version
165
- version: '1.22'
158
+ version: '2.0'
166
159
  type: :development
167
160
  prerelease: false
168
161
  version_requirements: !ruby/object:Gem::Requirement
169
162
  requirements:
170
163
  - - "~>"
171
164
  - !ruby/object:Gem::Version
172
- version: '1.22'
165
+ version: '2.0'
173
166
  - !ruby/object:Gem::Dependency
174
167
  name: webmock
175
168
  requirement: !ruby/object:Gem::Requirement
@@ -256,7 +249,6 @@ licenses:
256
249
  - MIT
257
250
  metadata:
258
251
  yard.run: yri
259
- post_install_message:
260
252
  rdoc_options: []
261
253
  require_paths:
262
254
  - lib
@@ -264,15 +256,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
264
256
  requirements:
265
257
  - - ">="
266
258
  - !ruby/object:Gem::Version
267
- version: 2.7.0
259
+ version: 3.2.0
268
260
  required_rubygems_version: !ruby/object:Gem::Requirement
269
261
  requirements:
270
262
  - - ">="
271
263
  - !ruby/object:Gem::Version
272
264
  version: '0'
273
265
  requirements: []
274
- rubygems_version: 3.3.22
275
- signing_key:
266
+ rubygems_version: 4.0.8
276
267
  specification_version: 4
277
268
  summary: A simple toolkit for working with SCIM 2.0
278
269
  test_files: []