rails-active-ui 0.1.0 → 0.2.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/app/components/menu_item_component.rb +1 -0
- data/lib/rails-active-ui.rb +6 -0
- data/lib/ui/version.rb +1 -1
- metadata +15 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0ad9187220eaca270dfe6d0a841607e595418cdf18af8394ad5c6888368a0b5
|
|
4
|
+
data.tar.gz: e096d42625112677598e31ebe42b382c4a7baa94e8f75e116e338ae4ef73ae67
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a778ed93d250860bc13b072322f188cdab64b874f3fff53864f21bae76cb5c3fed4cf5656aec95c8e637c58e62e8ccff2c7dcc80eec099ef5454eeeb88e85dc
|
|
7
|
+
data.tar.gz: af6c85e9e788e4dc18b367cfee982b51f02d3658ea94dcaed38e2cdb19c9daf11ebf369f55b0ad2adc696f55407bcbf977a4a1c5439a1f1498911db66d6d5d62
|
data/lib/ui/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails-active-ui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- nathan
|
|
@@ -13,6 +13,9 @@ dependencies:
|
|
|
13
13
|
name: rails
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '8.1'
|
|
16
19
|
- - ">="
|
|
17
20
|
- !ruby/object:Gem::Version
|
|
18
21
|
version: 8.1.0
|
|
@@ -20,10 +23,14 @@ dependencies:
|
|
|
20
23
|
prerelease: false
|
|
21
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
25
|
requirements:
|
|
26
|
+
- - "~>"
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '8.1'
|
|
23
29
|
- - ">="
|
|
24
30
|
- !ruby/object:Gem::Version
|
|
25
31
|
version: 8.1.0
|
|
26
|
-
description:
|
|
32
|
+
description: A Rails engine providing view components built on ActiveModel::Attributes
|
|
33
|
+
for type-safe, declarative UI rendering.
|
|
27
34
|
email:
|
|
28
35
|
- nathankidd@hey.com
|
|
29
36
|
executables: []
|
|
@@ -191,15 +198,18 @@ files:
|
|
|
191
198
|
- config/importmap.rb
|
|
192
199
|
- config/initializers/ruby_template_handler.rb
|
|
193
200
|
- config/routes.rb
|
|
201
|
+
- lib/rails-active-ui.rb
|
|
194
202
|
- lib/tasks/ui_tasks.rake
|
|
195
203
|
- lib/ui.rb
|
|
196
204
|
- lib/ui/engine.rb
|
|
197
205
|
- lib/ui/version.rb
|
|
198
206
|
homepage: https://github.com/n-at-han-k/rails-active-ui
|
|
199
|
-
licenses:
|
|
207
|
+
licenses:
|
|
208
|
+
- MIT
|
|
200
209
|
metadata:
|
|
201
210
|
homepage_uri: https://github.com/n-at-han-k/rails-active-ui
|
|
202
|
-
source_code_uri: https://github.com/n-at-han-k/rails-active-ui
|
|
211
|
+
source_code_uri: https://github.com/n-at-han-k/rails-active-ui/tree/main
|
|
212
|
+
changelog_uri: https://github.com/n-at-han-k/rails-active-ui/blob/main/CHANGELOG.md
|
|
203
213
|
rdoc_options: []
|
|
204
214
|
require_paths:
|
|
205
215
|
- lib
|
|
@@ -207,7 +217,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
207
217
|
requirements:
|
|
208
218
|
- - ">="
|
|
209
219
|
- !ruby/object:Gem::Version
|
|
210
|
-
version: '
|
|
220
|
+
version: '3.2'
|
|
211
221
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
212
222
|
requirements:
|
|
213
223
|
- - ">="
|