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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 71b206d5ad18f7431693678ca7566477e7ac522e
4
- data.tar.gz: f1045b5a352283c1437688348e3022ad6beafd94
3
+ metadata.gz: bc6e1733cff1d4b7ca852fc8a39fae85e66a55aa
4
+ data.tar.gz: e8940d85ec9120622b41e2721c83f895e3b7c09c
5
5
  SHA512:
6
- metadata.gz: 0f240ca098ef5e87be1dce184934943a5fb6b01d491e87c54b965b379c7c40cfe8a8dbfbc4b8eb6b1df59791dfbcbe20ab57a4e4921dec0ba3a54cb9a68a58a6
7
- data.tar.gz: 58cde7070524b17894482a1da0bfc3df972cceba1ca30a1efdcfec62a481f04ec03532d511a09c22f18b44923e362f67229f575e7a3fc2dd3442229a2b3ebbf7
6
+ metadata.gz: 7313eb6ef5a5c8c438e6d7aa2cf67d87bdaab4dbc4afd1c81d4706e80bb3415d7689353354fb9d133d44288dd3979f135c9bf59ab28b4612ebbad23f1eb2ed79
7
+ data.tar.gz: e5d8a6c9304b4be638ce9a28ee21f6c3be2fb756c18c00dd428688c2c41627e0f0bc1f340d141357cacbe14d9b717a8a1765a9a8e22b1b3aedec6ffa742c867c
data/.travis.yml CHANGED
@@ -21,7 +21,6 @@ rvm:
21
21
  - 2.5.1
22
22
  gemfile:
23
23
  - gemfiles/3.2.gemfile
24
- - gemfiles/4.0.gemfile
25
24
  - gemfiles/4.1.gemfile
26
25
  - gemfiles/4.2.gemfile
27
26
  - gemfiles/5.0.gemfile
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.3.0...HEAD)
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.0)
4
+ form_obj (0.5.0)
5
5
  activemodel (>= 3.2)
6
6
  activesupport (>= 3.2)
7
- typed_array (>= 1.0.1)
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.1)
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