form_obj 0.4.0 → 0.5.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 +4 -4
- data/.travis.yml +0 -1
- data/Appraisals +0 -6
- data/CHANGELOG.md +32 -1
- data/Gemfile.lock +4 -3
- data/README.md +997 -361
- data/Rakefile +7 -0
- data/form_obj.gemspec +2 -1
- data/lib/form_obj/form/array.rb +22 -22
- data/lib/form_obj/form/attribute.rb +1 -9
- data/lib/form_obj/form/attributes.rb +1 -9
- data/lib/form_obj/form.rb +25 -33
- data/lib/form_obj/model_mapper/array.rb +14 -6
- data/lib/form_obj/model_mapper/attribute.rb +4 -5
- data/lib/form_obj/model_mapper/model_attribute.rb +10 -1
- data/lib/form_obj/model_mapper.rb +43 -33
- data/lib/form_obj/struct/array.rb +61 -4
- data/lib/form_obj/struct/attribute.rb +35 -9
- data/lib/form_obj/struct/attributes.rb +12 -0
- data/lib/form_obj/struct.rb +52 -2
- data/lib/form_obj/version.rb +1 -1
- data/{run_spec.sh → run_tests.sh} +1 -0
- metadata +19 -6
- data/gemfiles/4.0.gemfile +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc6e1733cff1d4b7ca852fc8a39fae85e66a55aa
|
4
|
+
data.tar.gz: e8940d85ec9120622b41e2721c83f895e3b7c09c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7313eb6ef5a5c8c438e6d7aa2cf67d87bdaab4dbc4afd1c81d4706e80bb3415d7689353354fb9d133d44288dd3979f135c9bf59ab28b4612ebbad23f1eb2ed79
|
7
|
+
data.tar.gz: e5d8a6c9304b4be638ce9a28ee21f6c3be2fb756c18c00dd428688c2c41627e0f0bc1f340d141357cacbe14d9b717a8a1765a9a8e22b1b3aedec6ffa742c867c
|
data/.travis.yml
CHANGED
data/Appraisals
CHANGED
@@ -4,12 +4,6 @@ appraise "3.2" do
|
|
4
4
|
gem "actionpack", "~> 3.2.0"
|
5
5
|
end
|
6
6
|
|
7
|
-
appraise "4.0" do
|
8
|
-
gem "activesupport", "~> 4.0.0"
|
9
|
-
gem "activemodel", "~> 4.0.0"
|
10
|
-
gem "actionpack", "~> 4.0.0"
|
11
|
-
end
|
12
|
-
|
13
7
|
appraise "4.1" do
|
14
8
|
gem "activesupport", "~> 4.1.0"
|
15
9
|
gem "activemodel", "~> 4.1.0"
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,38 @@
|
|
2
2
|
|
3
3
|
## [Unreleased](https://github.com/akoltun/form_obj/tree/HEAD)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/akoltun/form_obj/compare/v0.
|
5
|
+
[Full Changelog](https://github.com/akoltun/form_obj/compare/v0.4.0...HEAD)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Initialize FormObj::Struct with hash of attribute values [\#15](https://github.com/akoltun/form_obj/issues/15)
|
10
|
+
- Redesign deletion FormObj::Form in array in FormObj::Form.update\_attribute method [\#11](https://github.com/akoltun/form_obj/issues/11)
|
11
|
+
- Unify "model\_attribute: false" behaviour [\#7](https://github.com/akoltun/form_obj/issues/7)
|
12
|
+
|
13
|
+
**Closed issues:**
|
14
|
+
|
15
|
+
- Rewrite FormObj::Form tests in Minitest [\#30](https://github.com/akoltun/form_obj/issues/30)
|
16
|
+
- Add to documentation and tests the description of :default parameter [\#23](https://github.com/akoltun/form_obj/issues/23)
|
17
|
+
- Move update\_attributes method to FormObj::Struct class [\#14](https://github.com/akoltun/form_obj/issues/14)
|
18
|
+
- Overwritebility for :append, :update and :delete actions in update\_attributes for arrayed form objects [\#10](https://github.com/akoltun/form_obj/issues/10)
|
19
|
+
- Transform initialization or `update\_attributes` hash into HashWithIndifferentAccess before applying its values. [\#5](https://github.com/akoltun/form_obj/issues/5)
|
20
|
+
|
21
|
+
**Merged pull requests:**
|
22
|
+
|
23
|
+
- Redesign model mapper: load\_from\_models [\#40](https://github.com/akoltun/form_obj/pull/40) ([akoltun](https://github.com/akoltun))
|
24
|
+
- Migrate FormObj::Form tests to minitest [\#39](https://github.com/akoltun/form_obj/pull/39) ([akoltun](https://github.com/akoltun))
|
25
|
+
- Refactor form update attributes [\#38](https://github.com/akoltun/form_obj/pull/38) ([akoltun](https://github.com/akoltun))
|
26
|
+
- Refactor FormObj::Struct so update\_attributes behaviour could be easily overwritten in descendants [\#37](https://github.com/akoltun/form_obj/pull/37) ([akoltun](https://github.com/akoltun))
|
27
|
+
- Rework struct documentation [\#35](https://github.com/akoltun/form_obj/pull/35) ([akoltun](https://github.com/akoltun))
|
28
|
+
- Transform initialization or `update\_attributes` hash into HashWithInd… [\#34](https://github.com/akoltun/form_obj/pull/34) ([akoltun](https://github.com/akoltun))
|
29
|
+
- Add test and doc for default parameter [\#33](https://github.com/akoltun/form_obj/pull/33) ([akoltun](https://github.com/akoltun))
|
30
|
+
- Run minitests against all ruby and rails versions. Do not tests again… [\#32](https://github.com/akoltun/form_obj/pull/32) ([akoltun](https://github.com/akoltun))
|
31
|
+
- Migrate struct tests from rspec to minitest [\#31](https://github.com/akoltun/form_obj/pull/31) ([akoltun](https://github.com/akoltun))
|
32
|
+
- Move update attributes to FormObj::Struct [\#29](https://github.com/akoltun/form_obj/pull/29) ([akoltun](https://github.com/akoltun))
|
33
|
+
- Unify model\_attribute: false behaviour [\#28](https://github.com/akoltun/form_obj/pull/28) ([akoltun](https://github.com/akoltun))
|
34
|
+
|
35
|
+
## [v0.4.0](https://github.com/akoltun/form_obj/tree/v0.4.0) (2018-06-04)
|
36
|
+
[Full Changelog](https://github.com/akoltun/form_obj/compare/v0.3.0...v0.4.0)
|
6
37
|
|
7
38
|
**Fixed bugs:**
|
8
39
|
|
data/Gemfile.lock
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
form_obj (0.
|
4
|
+
form_obj (0.5.0)
|
5
5
|
activemodel (>= 3.2)
|
6
6
|
activesupport (>= 3.2)
|
7
|
-
typed_array (>= 1.0.
|
7
|
+
typed_array (>= 1.0.2)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
@@ -71,7 +71,7 @@ GEM
|
|
71
71
|
rspec-support (3.7.1)
|
72
72
|
thor (0.20.0)
|
73
73
|
thread_safe (0.3.6)
|
74
|
-
typed_array (1.0.
|
74
|
+
typed_array (1.0.2)
|
75
75
|
tzinfo (1.2.5)
|
76
76
|
thread_safe (~> 0.1)
|
77
77
|
|
@@ -83,6 +83,7 @@ DEPENDENCIES
|
|
83
83
|
appraisal
|
84
84
|
bundler (~> 1.16)
|
85
85
|
form_obj!
|
86
|
+
minitest (~> 5.0)
|
86
87
|
rake (~> 10.0)
|
87
88
|
rspec (~> 3.0)
|
88
89
|
|