compony 0.11.8 → 0.11.10
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/.ruby-version +1 -1
- data/.yardopts +36 -1
- data/CHANGELOG.md +43 -0
- data/CLAUDE.md +85 -0
- data/Gemfile.lock +1 -1
- data/README.md +13 -3
- data/VERSION +1 -1
- data/compony.gemspec +4 -4
- data/doc/ComponentGenerator.html +2 -2
- data/doc/Components.html +2 -2
- data/doc/ComponentsGenerator.html +2 -2
- data/doc/Compony/Component.html +55 -55
- data/doc/Compony/ComponentMixins/Default/Labelling.html +2 -2
- data/doc/Compony/ComponentMixins/Default/Standalone/ResourcefulVerbDsl.html +2 -2
- data/doc/Compony/ComponentMixins/Default/Standalone/StandaloneDsl.html +110 -71
- data/doc/Compony/ComponentMixins/Default/Standalone/VerbDsl.html +65 -29
- data/doc/Compony/ComponentMixins/Default/Standalone.html +2 -2
- data/doc/Compony/ComponentMixins/Default.html +2 -2
- data/doc/Compony/ComponentMixins/Resourceful.html +214 -75
- data/doc/Compony/ComponentMixins.html +2 -2
- data/doc/Compony/Components/Buttons/CssButton.html +2 -2
- data/doc/Compony/Components/Buttons/Link.html +2 -2
- data/doc/Compony/Components/Buttons.html +2 -2
- data/doc/Compony/Components/Destroy.html +84 -30
- data/doc/Compony/Components/Edit.html +111 -39
- data/doc/Compony/Components/Form.html +552 -209
- data/doc/Compony/Components/Index.html +2 -2
- data/doc/Compony/Components/List.html +51 -35
- data/doc/Compony/Components/New.html +111 -39
- data/doc/Compony/Components/Show.html +2 -2
- data/doc/Compony/Components/WithForm.html +195 -48
- data/doc/Compony/Components.html +2 -2
- data/doc/Compony/ControllerMixin.html +2 -2
- data/doc/Compony/Engine.html +2 -2
- data/doc/Compony/Intent.html +3 -3
- data/doc/Compony/ManageIntentsDsl.html +2 -2
- data/doc/Compony/MethodAccessibleHash.html +2 -2
- data/doc/Compony/ModelFields/Anchormodel.html +2 -2
- data/doc/Compony/ModelFields/Association.html +2 -2
- data/doc/Compony/ModelFields/Attachment.html +2 -2
- data/doc/Compony/ModelFields/Base.html +2 -2
- data/doc/Compony/ModelFields/Boolean.html +2 -2
- data/doc/Compony/ModelFields/Color.html +2 -2
- data/doc/Compony/ModelFields/Currency.html +2 -2
- data/doc/Compony/ModelFields/Date.html +2 -2
- data/doc/Compony/ModelFields/Datetime.html +2 -2
- data/doc/Compony/ModelFields/Decimal.html +2 -2
- data/doc/Compony/ModelFields/Email.html +2 -2
- data/doc/Compony/ModelFields/Float.html +2 -2
- data/doc/Compony/ModelFields/Integer.html +2 -2
- data/doc/Compony/ModelFields/Percentage.html +2 -2
- data/doc/Compony/ModelFields/Phone.html +2 -2
- data/doc/Compony/ModelFields/RichText.html +2 -2
- data/doc/Compony/ModelFields/String.html +2 -2
- data/doc/Compony/ModelFields/Text.html +2 -2
- data/doc/Compony/ModelFields/Time.html +2 -2
- data/doc/Compony/ModelFields/Url.html +2 -2
- data/doc/Compony/ModelFields.html +2 -2
- data/doc/Compony/ModelMixin.html +36 -36
- data/doc/Compony/NaturalOrdering.html +2 -2
- data/doc/Compony/RequestContext.html +2 -2
- data/doc/Compony/Version.html +2 -2
- data/doc/Compony/ViewHelpers.html +2 -2
- data/doc/Compony/VirtualModel.html +2 -2
- data/doc/Compony.html +33 -37
- data/doc/ComponyController.html +2 -2
- data/doc/_index.html +98 -2
- data/doc/file.CHANGELOG.html +765 -0
- data/doc/file.README.html +26 -5
- data/doc/file.basic_component.html +314 -0
- data/doc/file.cookbook.html +189 -0
- data/doc/file.destroy.html +105 -0
- data/doc/file.dsl_reference.html +672 -0
- data/doc/file.edit.html +109 -0
- data/doc/file.example.html +291 -0
- data/doc/file.example_advanced.html +257 -0
- data/doc/file.feasibility.html +115 -0
- data/doc/file.form.html +195 -0
- data/doc/file.generators.html +89 -0
- data/doc/file.glossary.html +217 -0
- data/doc/file.gotchas.html +222 -0
- data/doc/file.index.html +135 -0
- data/doc/file.inheritance.html +136 -0
- data/doc/file.installation.html +115 -0
- data/doc/file.integrations.html +218 -0
- data/doc/file.intents.html +265 -0
- data/doc/file.internal_datastructures.html +129 -0
- data/doc/file.list.html +253 -0
- data/doc/file.maintaining.html +127 -0
- data/doc/file.model_fields.html +137 -0
- data/doc/file.nesting.html +237 -0
- data/doc/file.new.html +109 -0
- data/doc/file.ownership.html +98 -0
- data/doc/file.patterns.html +669 -0
- data/doc/file.pre_built_components.html +99 -0
- data/doc/file.resourceful.html +181 -0
- data/doc/file.show.html +158 -0
- data/doc/file.standalone.html +233 -0
- data/doc/file.virtual_models.html +117 -0
- data/doc/file.with_form.html +157 -0
- data/doc/file_list.html +160 -0
- data/doc/guide/cookbook.md +41 -0
- data/doc/guide/dsl_reference.md +155 -0
- data/doc/guide/example_advanced.md +209 -0
- data/doc/guide/generators.md +1 -1
- data/doc/guide/glossary.md +42 -0
- data/doc/guide/gotchas.md +125 -0
- data/doc/guide/maintaining.md +64 -0
- data/doc/guide/patterns.md +681 -0
- data/doc/guide/pre_built_components/edit.md +1 -1
- data/doc/guide/pre_built_components/index.md +64 -1
- data/doc/guide/pre_built_components/list.md +111 -7
- data/doc/guide/pre_built_components/show.md +57 -2
- data/doc/guide/pre_built_components/with_form.md +56 -9
- data/doc/guide/pre_built_components.md +7 -2
- data/doc/guide/standalone.md +16 -1
- data/doc/index.html +26 -5
- data/doc/integrations.md +61 -0
- data/doc/llms.txt +62 -0
- data/doc/top-level-namespace.html +2 -2
- data/lib/compony/component.rb +8 -3
- data/lib/compony/component_mixins/default/standalone/standalone_dsl.rb +32 -15
- data/lib/compony/component_mixins/default/standalone/verb_dsl.rb +11 -3
- data/lib/compony/component_mixins/resourceful.rb +30 -16
- data/lib/compony/components/destroy.rb +21 -1
- data/lib/compony/components/edit.rb +25 -1
- data/lib/compony/components/form.rb +63 -21
- data/lib/compony/components/list.rb +9 -1
- data/lib/compony/components/new.rb +25 -1
- data/lib/compony/components/with_form.rb +20 -5
- data/lib/compony/intent.rb +1 -1
- data/lib/compony/model_mixin.rb +66 -3
- data/lib/compony.rb +4 -6
- metadata +44 -2
data/doc/_index.html
CHANGED
|
@@ -63,6 +63,102 @@
|
|
|
63
63
|
<li class="r1"><a href="index.html" title="README">README</a></li>
|
|
64
64
|
|
|
65
65
|
|
|
66
|
+
<li class="r2"><a href="file.CHANGELOG.html" title="CHANGELOG">CHANGELOG</a></li>
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
<li class="r1"><a href="file.installation.html" title="installation">installation</a></li>
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
<li class="r2"><a href="file.example.html" title="example">example</a></li>
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
<li class="r1"><a href="file.example_advanced.html" title="example_advanced">example_advanced</a></li>
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
<li class="r2"><a href="file.basic_component.html" title="basic_component">basic_component</a></li>
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
<li class="r1"><a href="file.standalone.html" title="standalone">standalone</a></li>
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
<li class="r2"><a href="file.inheritance.html" title="inheritance">inheritance</a></li>
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
<li class="r1"><a href="file.nesting.html" title="nesting">nesting</a></li>
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
<li class="r2"><a href="file.resourceful.html" title="resourceful">resourceful</a></li>
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
<li class="r1"><a href="file.intents.html" title="intents">intents</a></li>
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
<li class="r2"><a href="file.feasibility.html" title="feasibility">feasibility</a></li>
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
<li class="r1"><a href="file.ownership.html" title="ownership">ownership</a></li>
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
<li class="r2"><a href="file.model_fields.html" title="model_fields">model_fields</a></li>
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
<li class="r1"><a href="file.generators.html" title="generators">generators</a></li>
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
<li class="r2"><a href="file.internal_datastructures.html" title="internal_datastructures">internal_datastructures</a></li>
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
<li class="r1"><a href="file.virtual_models.html" title="virtual_models">virtual_models</a></li>
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
<li class="r2"><a href="file.pre_built_components.html" title="pre_built_components">pre_built_components</a></li>
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
<li class="r1"><a href="file.show.html" title="show">show</a></li>
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
<li class="r2"><a href="file.index.html" title="index">index</a></li>
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
<li class="r1"><a href="file.list.html" title="list">list</a></li>
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
<li class="r2"><a href="file.destroy.html" title="destroy">destroy</a></li>
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
<li class="r1"><a href="file.with_form.html" title="with_form">with_form</a></li>
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
<li class="r2"><a href="file.form.html" title="form">form</a></li>
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
<li class="r1"><a href="file.new.html" title="new">new</a></li>
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
<li class="r2"><a href="file.edit.html" title="edit">edit</a></li>
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
<li class="r1"><a href="file.dsl_reference.html" title="dsl_reference">dsl_reference</a></li>
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
<li class="r2"><a href="file.glossary.html" title="glossary">glossary</a></li>
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
<li class="r1"><a href="file.gotchas.html" title="gotchas">gotchas</a></li>
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
<li class="r2"><a href="file.patterns.html" title="patterns">patterns</a></li>
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
<li class="r1"><a href="file.cookbook.html" title="cookbook">cookbook</a></li>
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
<li class="r2"><a href="file.integrations.html" title="integrations">integrations</a></li>
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
<li class="r1"><a href="file.maintaining.html" title="maintaining">maintaining</a></li>
|
|
160
|
+
|
|
161
|
+
|
|
66
162
|
</ul>
|
|
67
163
|
|
|
68
164
|
<div class="clear"></div>
|
|
@@ -622,9 +718,9 @@
|
|
|
622
718
|
</div>
|
|
623
719
|
|
|
624
720
|
<div id="footer">
|
|
625
|
-
Generated on
|
|
721
|
+
Generated on Thu Jun 4 20:37:14 2026 by
|
|
626
722
|
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
627
|
-
0.9.34 (ruby-3.
|
|
723
|
+
0.9.34 (ruby-3.4.9).
|
|
628
724
|
</div>
|
|
629
725
|
|
|
630
726
|
</div>
|