hyperactiveform 0.2.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.DS_Store +0 -0
- data/CHANGELOG.md +7 -0
- data/README.md +10 -0
- data/docs/FormGenerator.html +193 -0
- data/docs/HyperActiveForm/Base.html +125 -41
- data/docs/HyperActiveForm/CancelFormSubmit.html +1 -1
- data/docs/HyperActiveForm/FormDidNotSubmitError.html +1 -1
- data/docs/HyperActiveForm/Generators/InstallGenerator.html +6 -6
- data/docs/HyperActiveForm/Generators.html +2 -2
- data/docs/HyperActiveForm.html +3 -3
- data/docs/Rspec/Generators/FormGenerator.html +193 -0
- data/docs/Rspec/Generators.html +115 -0
- data/docs/Rspec.html +115 -0
- data/docs/TestUnit/Generators/FormGenerator.html +193 -0
- data/docs/TestUnit/Generators.html +115 -0
- data/docs/TestUnit.html +115 -0
- data/docs/_index.html +63 -1
- data/docs/class_list.html +1 -1
- data/docs/file.README.html +40 -2
- data/docs/index.html +40 -2
- data/docs/method_list.html +32 -0
- data/docs/top-level-namespace.html +4 -2
- data/lib/generators/form/form_generator.rb +9 -0
- data/lib/generators/form/templates/form.rb +2 -0
- data/lib/{hyper_active_form/generators.rb → generators/hyper_active_form/install/install_generator.rb} +0 -2
- data/lib/generators/rspec/form_generator.rb +11 -0
- data/lib/generators/rspec/templates/form_spec.rb +5 -0
- data/lib/generators/test_unit/form_generator.rb +11 -0
- data/lib/generators/test_unit/templates/form_test.rb +7 -0
- data/lib/hyper_active_form/base.rb +5 -0
- data/lib/hyper_active_form/version.rb +1 -1
- data/lib/hyper_active_form.rb +0 -1
- metadata +17 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hyperactiveform
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrien Siami
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -59,17 +59,25 @@ executables: []
|
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
|
+
- ".DS_Store"
|
62
63
|
- ".rspec"
|
63
64
|
- CHANGELOG.md
|
64
65
|
- LICENSE.txt
|
65
66
|
- README.md
|
66
67
|
- Rakefile
|
68
|
+
- docs/FormGenerator.html
|
67
69
|
- docs/HyperActiveForm.html
|
68
70
|
- docs/HyperActiveForm/Base.html
|
69
71
|
- docs/HyperActiveForm/CancelFormSubmit.html
|
70
72
|
- docs/HyperActiveForm/FormDidNotSubmitError.html
|
71
73
|
- docs/HyperActiveForm/Generators.html
|
72
74
|
- docs/HyperActiveForm/Generators/InstallGenerator.html
|
75
|
+
- docs/Rspec.html
|
76
|
+
- docs/Rspec/Generators.html
|
77
|
+
- docs/Rspec/Generators/FormGenerator.html
|
78
|
+
- docs/TestUnit.html
|
79
|
+
- docs/TestUnit/Generators.html
|
80
|
+
- docs/TestUnit/Generators/FormGenerator.html
|
73
81
|
- docs/_index.html
|
74
82
|
- docs/class_list.html
|
75
83
|
- docs/css/common.css
|
@@ -88,9 +96,15 @@ files:
|
|
88
96
|
- gemfiles/Gemfile.rails-7.1.x
|
89
97
|
- gemfiles/Gemfile.rails-7.2.x
|
90
98
|
- gemfiles/Gemfile.rails-8.x
|
99
|
+
- lib/generators/form/form_generator.rb
|
100
|
+
- lib/generators/form/templates/form.rb
|
101
|
+
- lib/generators/hyper_active_form/install/install_generator.rb
|
102
|
+
- lib/generators/rspec/form_generator.rb
|
103
|
+
- lib/generators/rspec/templates/form_spec.rb
|
104
|
+
- lib/generators/test_unit/form_generator.rb
|
105
|
+
- lib/generators/test_unit/templates/form_test.rb
|
91
106
|
- lib/hyper_active_form.rb
|
92
107
|
- lib/hyper_active_form/base.rb
|
93
|
-
- lib/hyper_active_form/generators.rb
|
94
108
|
- lib/hyper_active_form/version.rb
|
95
109
|
- lib/hyperactiveform.rb
|
96
110
|
- sig/hyperactiveform.rbs
|