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: bef04b912f756edd217e2294608bc08eef650d0e944145ef052b5a1760860682
4
- data.tar.gz: '0792ce039b5817ce7fd9b6965c20672497ba6615ab555b2965110ce6a6817ed2'
3
+ metadata.gz: 81eaeaadec3023c062c306ca82163e3ea43f5263a05cfa8241dbf9f3ff28e3f2
4
+ data.tar.gz: 1c9036dff1203041c8c34dac6b7a5a9c530abeeba9e69b658aa5064b1ea23dfe
5
5
  SHA512:
6
- metadata.gz: 7c515453889a668ab223f6099407cd32c70046bd91e8e1e814ee3759e865857b83d0de87fda35b67a157da6a045794f067b1871574eff82b3d313180a62c5aff
7
- data.tar.gz: 2cb5b4988c27072c593bf6fa88b3f40785cb8ba19c6c9627082b56260e4793978757ddac1683216e74e1a91c0052ac2474cead61ecef67c8b4249f67988b7f9b
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
- "#{Rails.root}/app/components/ruby_ui", namespace: RubyUI
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.to_sym
10
+ @as = as
11
11
  @orientation = orientation.to_sym
12
12
  @decorative = decorative
13
13
  super(**attrs)
data/lib/ruby_ui.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyUI
4
- VERSION = "1.0.0.rc1"
4
+ VERSION = "1.0.0"
5
5
  end
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.rc1
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-25 00:00:00.000000000 Z
11
+ date: 2025-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex