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 +4 -4
- data/CHANGELOG.md +8 -2
- data/Gemfile.lock +1 -1
- data/README.md +36 -4
- data/lib/form_obj/form.rb +4 -0
- data/lib/form_obj/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c62bd85a1e285dd9c63c46cb2c750c45b8ff9ecdad73f662b7884a1ea9164eb
|
4
|
+
data.tar.gz: 15f1a26361b5c9631fda5ca51cce0c8cd6d7cdc18ab9bb50967b4e33be8c7112
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1318dafdb38dcada0445527025e1d941fe62963052f9e940285cadd3cb84aa5d6101f6edc642d0c313ea7d6c80910f17aa1b3866017255a0eef424d2b8770a2
|
7
|
+
data.tar.gz: ebdd3bac8c06240d93ec95311a161071c58f8f27f7734a05c06ab6df68e9d46bd6a32dc0ca8251d5b8e54a2e5e589b03d6c86d58d7ab326a7f1bd21af703c72f
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,14 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [
|
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
|
-
|
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
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. [
|
60
|
-
4. [
|
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.
|
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.
|
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
data/lib/form_obj/version.rb
CHANGED
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.
|
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
|
+
date: 2018-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typed_array
|