form_obj 1.0.0 → 1.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a69ae52adaf40553cf429f30b569c3e9a4c86138178f65de08925948bdcf880a
4
- data.tar.gz: 7dc2e173d6e41f5b3b2626a1f6f99b82114cb94698f59fc7e1f89b9e3ce2042f
3
+ metadata.gz: 6c62bd85a1e285dd9c63c46cb2c750c45b8ff9ecdad73f662b7884a1ea9164eb
4
+ data.tar.gz: 15f1a26361b5c9631fda5ca51cce0c8cd6d7cdc18ab9bb50967b4e33be8c7112
5
5
  SHA512:
6
- metadata.gz: df60145ec27f618e2f30dfee8957c3047f67e781e80a733b3156ecdbccaa015f251fc7ebc500b4a71194019ced1e96dd416832e140d282d431f8405a44535623
7
- data.tar.gz: 022c08b6e40715ef8381e6266305a4f02362728d575faadda825dcefa10c22dd5f03b758657b20e026e4c3a130d84a5eb3296055d70cd129898fefd0c46c17f9
6
+ metadata.gz: a1318dafdb38dcada0445527025e1d941fe62963052f9e940285cadd3cb84aa5d6101f6edc642d0c313ea7d6c80910f17aa1b3866017255a0eef424d2b8770a2
7
+ data.tar.gz: ebdd3bac8c06240d93ec95311a161071c58f8f27f7734a05c06ab6df68e9d46bd6a32dc0ca8251d5b8e54a2e5e589b03d6c86d58d7ab326a7f1bd21af703c72f
data/CHANGELOG.md CHANGED
@@ -1,8 +1,14 @@
1
1
  # Change Log
2
2
 
3
- ## [Unreleased](https://github.com/akoltun/form_obj/tree/HEAD)
3
+ ## [v1.0.1](https://github.com/akoltun/form_obj/tree/v1.0.1) (2018-07-19)
4
+ [Full Changelog](https://github.com/akoltun/form_obj/compare/v1.0.0...v1.0.1)
4
5
 
5
- [Full Changelog](https://github.com/akoltun/form_obj/compare/v0.5.0...HEAD)
6
+ **Merged pull requests:**
7
+
8
+ - FormObj::Form do not raise by default on non-existent attributes update [\#64](https://github.com/akoltun/form_obj/pull/64) ([akoltun](https://github.com/akoltun))
9
+
10
+ ## [v1.0.0](https://github.com/akoltun/form_obj/tree/v1.0.0) (2018-07-11)
11
+ [Full Changelog](https://github.com/akoltun/form_obj/compare/v0.5.0...v1.0.0)
6
12
 
7
13
  **Implemented enhancements:**
8
14
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- form_obj (1.0.0)
4
+ form_obj (1.0.1)
5
5
  activemodel (>= 3.2)
6
6
  activesupport (>= 3.2)
7
7
  typed_array (>= 1.0.2)
data/README.md CHANGED
@@ -56,8 +56,9 @@ model attributes name) and
56
56
  2. [`FormObj::Form`](#2-formobjform)
57
57
  1. [`FormObj::Form` Validation](#21-formobjform-validation)
58
58
  2. [`FormObj::Form` Persistence](#22-formobjform-persistence)
59
- 3. [Delete from Array of `FormObj::Form` via `update_attributes` method](#23-delete-from-array-of-formobjform-via-update_attributes-method)
60
- 4. [Using `FormObj::Form` in Form Builder](#24-using-formobjform-in-form-builder)
59
+ 3. [Non-Existent Attributes in `FormObj::Form` `update_attributes` Do Not Raise By Default](23-non-existent-attributes-in-formobjform-update_attributes-do-not-raise-by-default)
60
+ 4. [Delete from Array of `FormObj::Form` via `update_attributes` method](#24-delete-from-array-of-formobjform-via-update_attributes-method)
61
+ 5. [Using `FormObj::Form` in Form Builder](#25-using-formobjform-in-form-builder)
61
62
  3. [`FormObj::ModelMapper`](#3-formobjmodelmapper)
62
63
  1. [`load_from_model` - Initialize Form Object from Model](#31-load_from_model---initialize-form-object-from-model)
63
64
  2. [`load_from_models` - Initialize Form Object from Few Models](#32-load_from_models---initialize-form-object-from-few-models)
@@ -805,7 +806,38 @@ team.update_attributes(name: 'McLaren')
805
806
  team.persisted? # => false
806
807
  ```
807
808
 
808
- #### 2.3. Delete from Array of `FormObj::Form` via `update_attributes` method
809
+ #### 2.3. Non-Existent Attributes in `FormObj::Form` `update_attributes` Do Not Raise By Default
810
+
811
+ `FormObj::Form` `update_attributes` method has `raise_if_not_found` parameter default `false` value.
812
+ In order to have the same behaviour as `FormObj::Struct` `update_attributes` explicitly specify this parameter equal to `true`
813
+
814
+ ```ruby
815
+ class TeamStruct < FormObj::Struct
816
+ attribute :name
817
+ attribute :year
818
+ end
819
+
820
+ TeamStruct.new(name: 'Ferrari', a: 1) # => FormObj::UnknownAttributeError: a
821
+ TeamStruct.new.update_attributes(a: 1) # => FormObj::UnknownAttributeError: a
822
+
823
+ TeamStruct.new({ name: 'Ferrari', a: 1 }, raise_if_not_found: false) # => #<Team name: "Ferrari", year: nil>
824
+ TeamStruct.new.update_attributes({ a: 1 }, raise_if_not_found: false) # => #<Team name: nil, year: nil>
825
+ ```
826
+
827
+ ```ruby
828
+ class TeamForm < FormObj::Form
829
+ attribute :name
830
+ attribute :year
831
+ end
832
+
833
+ TeamForm.new(name: 'Ferrari', a: 1) # => #<Team name: "Ferrari", year: nil>
834
+ TeamForm.new.update_attributes(a: 1) # => #<Team name: nil, year: nil>
835
+
836
+ TeamForm.new({ name: 'Ferrari', a: 1 }, raise_if_not_found: true) # => FormObj::UnknownAttributeError: a
837
+ TeamForm.new.update_attributes({ a: 1 }, raise_if_not_found: true) # => FormObj::UnknownAttributeError: a
838
+ ```
839
+
840
+ #### 2.4. Delete from Array of `FormObj::Form` via `update_attributes` method
809
841
 
810
842
  `FormObj::Struct` `update_attributes` method by default deletes all array elements that are not present in the new hash.
811
843
 
@@ -866,7 +898,7 @@ team.cars[0].mark_for_destruction
866
898
  team.cars[0].marked_for_destruction? # => true
867
899
  ```
868
900
 
869
- #### 2.4. Using `FormObj::Form` in Form Builder
901
+ #### 2.5. Using `FormObj::Form` in Form Builder
870
902
 
871
903
  ```ruby
872
904
  class Team < FormObj::Form
data/lib/form_obj/form.rb CHANGED
@@ -68,6 +68,10 @@ module FormObj
68
68
  @marked_for_destruction ||= false
69
69
  end
70
70
 
71
+ def update_attributes(attrs, raise_if_not_found: false)
72
+ super
73
+ end
74
+
71
75
  private
72
76
 
73
77
  def _set_attribute_value(attribute, value)
@@ -1,3 +1,3 @@
1
1
  module FormObj
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: form_obj
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Koltun
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-07-11 00:00:00.000000000 Z
11
+ date: 2018-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typed_array