scim-kit 0.3.1 → 0.3.2

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: '03508b00c8ef52b1becf19424807a5fcbcdf9cc3ba777749a05fd06b0b021704'
4
- data.tar.gz: b153296ba1adc24ff5ad8393cc65c95be08d783e4b726c6453e155a025e24c9e
3
+ metadata.gz: cd17a93f0e199bc2b7312d8643714ed2735724f911da7af62366e7b02f42fc5e
4
+ data.tar.gz: 8bc20d24ddc2593667785155056b278a06c10f73a83c5d76d0c9b661c9acf73e
5
5
  SHA512:
6
- metadata.gz: b7fb73dfd610953718bda94fb04663b9de89a7210e6c87b52df4e3866058e2794116b26b2e051df33d13cdadb4df25930e7f857beb40d55559597b90f62285c4
7
- data.tar.gz: b1d1de39b5df6fdf269376f28096c3bf921e159c5e25049c9ff5207bdb5016a3960482e4774ebf74e17ecbcaa847c25d54937d77e84e19d746bfe19c920d6471
6
+ metadata.gz: 6ecf2c8514298d164cfa844c52d3e706848e89d46b79b91e989476cedbd834097ed472e05b4f1c8bfa519acc8d46a416397bf414159d6ef97c73c7c26a0bb843
7
+ data.tar.gz: f7bead86283182163aa08103d32f869c03e148f3186970a74d32d47aaf9780561b04a1bbd68e3a1b6743660dbcdd6d0d383ec3bd07f10b590c70680a4453f222
@@ -1,4 +1,4 @@
1
- Version 0.3.1
1
+ Version 0.3.2
2
2
  # Changelog
3
3
  All notable changes to this project will be documented in this file.
4
4
 
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
  ## [Unreleased]
9
9
  - NA
10
10
 
11
+ ## [0.3.2] - 2019-02-23
12
+ ### Changed
13
+ - camelize the default description of attribute names.
14
+
11
15
  ## [0.3.1] - 2019-02-23
12
16
  ### Changed
13
17
  - fix bug in `Scim::Kit::V2.configure`
@@ -31,7 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
31
35
  - \_assign does not coerce values by default.
32
36
  - errors are merged together instead of overwritten during attribute validation.
33
37
 
34
- [Unreleased]: https://github.com/mokhan/scim-kit/compare/v0.3.1...HEAD
38
+ [Unreleased]: https://github.com/mokhan/scim-kit/compare/v0.3.2...HEAD
39
+ [0.3.2]: https://github.com/mokhan/scim-kit/compare/v0.3.1...v0.3.2
35
40
  [0.3.1]: https://github.com/mokhan/scim-kit/compare/v0.3.0...v0.3.1
36
41
  [0.3.0]: https://github.com/mokhan/scim-kit/compare/v0.2.16...v0.3.0
37
42
  [0.2.16]: https://github.com/mokhan/scim-kit/compare/v0.2.15...v0.2.16
@@ -14,7 +14,7 @@ module Scim
14
14
  def initialize(name:, type: :string)
15
15
  @name = name.to_s.underscore
16
16
  @type = DATATYPES[type.to_sym] ? type.to_sym : (raise TYPE_ERROR)
17
- @description = name
17
+ @description = name.to_s.camelize(:lower)
18
18
  @multi_valued = false
19
19
  @required = false
20
20
  @case_exact = false
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Scim
4
4
  module Kit
5
- VERSION = '0.3.1'
5
+ VERSION = '0.3.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scim-kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - mo