scimitar 2.7.0 → 2.7.1

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/scimitar/version.rb +2 -2
  4. metadata +4 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63de55fe4d1ab41c577b2af07fafa7285fbee265d0dcc9d7b28f452739efd1fe
4
- data.tar.gz: 130cbc6ceddbc5d867eff3f567f087e7345c6adb28231388a89a38cda72db9eb
3
+ metadata.gz: be3285b59b4b124288a68cbfcc308caff2c44c788d66ee537e6a1db3780e8633
4
+ data.tar.gz: e04d556655ee3dc440dd5eda89b217c3a5a6d9b96697686c0bb71241268d09d0
5
5
  SHA512:
6
- metadata.gz: b7d1272b4540c082ff3ab0b2d7fdc79d8b1fd502f9f37a219d58fd185512daf2f3b77ddfa2a61ccf335fe994a8b141b31ab48012bf6674df8986b69bca1bce99
7
- data.tar.gz: 710683faceb05f8402016a76b4991358928a6ab62cde698d5a88c02f5c842d9a4f109ab443ff1170dce83f5d187075622c398746cba3f8647ee8732eafab0eaf
6
+ metadata.gz: 53a364cee0f0ea429b51a521131c186a0b51f16b78dacf89dd62a0eb3565ecd3dc21c22acb2cb453c9ca61d6764bc18ff3a0a4c2f4ef805988e1a5adb3a18cd0
7
+ data.tar.gz: 8e649ec7793576b31acca746025c02f325162c3d7f715a9554d8c6bdfc3b57b6734b571473c84e9d74eda7e2c3d909d576960464d8a00be8f418e9a56510a6dc
data/README.md CHANGED
@@ -264,7 +264,7 @@ All data-layer actions are taken via `#find` or `#save!`, with exceptions such a
264
264
 
265
265
  ##### Overriding controller methods
266
266
 
267
- You can overwrite write-based controller methods `#create`, `#update`, `#replace` and `destroy` in your controller subclass, should you wish, wherein a call to `super` is passed a block. The block is invoked with the instance of a new unsaved record for `#create`, the updated record that needs to have its changes saved for `#update` and `#replace` and the record that should be destroyed for `#destroy`. This allows you to do things like applying business logic, default values, extra request-derived data and so-forth before then calling `record.save!`, or using some different method other than `record.destroy!` to discard a record (e.g. you might be using soft-delete, or want to skip all callbacks for some reason via `record.delete`).
267
+ You can overwrite write-based controller methods `#create`, `#update`, `#replace` and `#destroy` in your controller subclass, should you wish, wherein a call to `super` is passed a block. The block is invoked with the instance of a new unsaved record for `#create`, the updated record that needs to have its changes saved for `#update` and `#replace` and the record that should be destroyed for `#destroy`. This allows you to do things like applying business logic, default values, extra request-derived data and so-forth before then calling `record.save!`, or using some different method other than `record.destroy!` to discard a record (e.g. you might be using soft-delete, or want to skip all callbacks for some reason via `record.delete`).
268
268
 
269
269
  * The `#destroy` method just calls `record.destroy!` unless a block is given, with nothing much else to say about it.
270
270
 
@@ -3,11 +3,11 @@ module Scimitar
3
3
  # Gem version. If this changes, be sure to re-run "bundle install" or
4
4
  # "bundle update".
5
5
  #
6
- VERSION = '2.7.0'
6
+ VERSION = '2.7.1'
7
7
 
8
8
  # Date for VERSION. If this changes, be sure to re-run "bundle install"
9
9
  # or "bundle update".
10
10
  #
11
- DATE = '2024-01-15'
11
+ DATE = '2024-01-16'
12
12
 
13
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scimitar
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.0
4
+ version: 2.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - RIPA Global
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-01-15 00:00:00.000000000 Z
12
+ date: 2024-01-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -25,20 +25,6 @@ dependencies:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
27
  version: '7.0'
28
- - !ruby/object:Gem::Dependency
29
- name: nokogiri
30
- requirement: !ruby/object:Gem::Requirement
31
- requirements:
32
- - - '='
33
- - !ruby/object:Gem::Version
34
- version: 1.15.5
35
- type: :runtime
36
- prerelease: false
37
- version_requirements: !ruby/object:Gem::Requirement
38
- requirements:
39
- - - '='
40
- - !ruby/object:Gem::Version
41
- version: 1.15.5
42
28
  - !ruby/object:Gem::Dependency
43
29
  name: rake
44
30
  requirement: !ruby/object:Gem::Requirement
@@ -265,7 +251,7 @@ metadata:
265
251
  homepage_uri: https://www.ripaglobal.com/
266
252
  source_code_uri: https://github.com/RIPAGlobal/scimitar/
267
253
  bug_tracker_uri: https://github.com/RIPAGlobal/scimitar/issues/
268
- changelog_uri: https://github.com/RIPAGlobal/scimitar/blob/master/CHANGELOG.md
254
+ changelog_uri: https://github.com/RIPAGlobal/scimitar/blob/main/CHANGELOG.md
269
255
  post_install_message:
270
256
  rdoc_options: []
271
257
  require_paths:
@@ -281,7 +267,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
281
267
  - !ruby/object:Gem::Version
282
268
  version: '0'
283
269
  requirements: []
284
- rubygems_version: 3.5.3
270
+ rubygems_version: 3.5.4
285
271
  signing_key:
286
272
  specification_version: 4
287
273
  summary: SCIM v2 for Rails