ruby_ui 1.0.0.rc1 → 1.0.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81eaeaadec3023c062c306ca82163e3ea43f5263a05cfa8241dbf9f3ff28e3f2
|
4
|
+
data.tar.gz: 1c9036dff1203041c8c34dac6b7a5a9c530abeeba9e69b658aa5064b1ea23dfe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 250e76eff54d1edcfb57f375ac6c0944182f95c3135002a9810d1a33814bbdc9c77b50dfaf4071316f1407282a81383dac841aa486a2337d1b3d1e4c2cf58eb8
|
7
|
+
data.tar.gz: 28f38979ad9df377fa7a941bd6593683ed19d1e18a116bda8f6ba4ea99d5e11e4ceb153eb4a056cdab936ed0f8239918df6023833c60b28af274c3707d4c543d
|
@@ -11,7 +11,7 @@ Rails.autoloaders.main.inflector.inflect(
|
|
11
11
|
|
12
12
|
# Allow using RubyUI::ComponentName instead Components::RubyUI::ComponentName
|
13
13
|
Rails.autoloaders.main.push_dir(
|
14
|
-
|
14
|
+
Rails.root.join("app/components/ruby_ui"), namespace: RubyUI
|
15
15
|
)
|
16
16
|
|
17
17
|
# Allow using RubyUI::ComponentName instead RubyUI::ComponentName::ComponentName
|
@@ -7,7 +7,7 @@ module RubyUI
|
|
7
7
|
def initialize(as: :div, orientation: :horizontal, decorative: true, **attrs)
|
8
8
|
raise ArgumentError, "Invalid orientation: #{orientation}" unless ORIENTATIONS.include?(orientation.to_sym)
|
9
9
|
|
10
|
-
@as = as
|
10
|
+
@as = as
|
11
11
|
@orientation = orientation.to_sym
|
12
12
|
@decorative = decorative
|
13
13
|
super(**attrs)
|
data/lib/ruby_ui.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- George Kettle
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|