kozenet_ui 0.1.0 → 0.1.2

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: d2e605abb6778d99121ffbff8d6235971c994d7647e291760536a6e2943c9c5f
4
- data.tar.gz: 3eadc2b72abef29b6e58495782c3dddd4eacc53905b307db2189d707c453cb41
3
+ metadata.gz: 738d8ba681520417ed7c1199dfecc2c9c67d324df0a11d09a6fb3a8c906c6d91
4
+ data.tar.gz: 7485349790ba1fb8f1b558f887419321442942d78fb7c7b6b5b56e2bcbf04ee6
5
5
  SHA512:
6
- metadata.gz: e99bd0a77b908ff52cf0c7d46e763673665deff1ad461f06edb3518c64ad4ac24739048344900df5d8fee873ff478d23e3b02a8dfcc15e34cddd9c790d472836
7
- data.tar.gz: ebefa10c5fd1d0fe447bf5599e587dd0944dc6c715f2fdd5a22cfa202fffdd72d7bd0a7398ad569fcbe78629d9e03df85d5fed5931cbb330837a312ce17e51f4
6
+ metadata.gz: cd6c8048f9cff2bce3f22c726c1ec4dd04db9c53528bc58d81dcb0fe254c2362e5c2ac2e0f13789169b506631e8d38d6e4b0817ce7daba16ecf927215ef5f2c1
7
+ data.tar.gz: 2ea99f1503f664d808340689ccc981e12bf70b3eb2c384fb2491bb76f78a3b1f18216e062a96213c60a53fdcd8c66b966f5a53f0e677516f235a32b7c2b2c4e5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2025-10-31
4
+
5
+ - Fix: Ensure all Kozenet UI CSS files are available in the asset pipeline for all Rails setups (improved asset paths and precompile logic in engine).
6
+
3
7
  ## [0.1.0] - 2025-10-30
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Kozenet UI
2
2
 
3
- [![CI](https://github.com/kozenetpro/kozenet_ui/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/kozenetpro/kozenet_ui/actions/workflows/main.yml)
3
+ [![Ruby](https://github.com/kozenetpro/kozenet_ui/actions/workflows/main.yml/badge.svg)](https://github.com/kozenetpro/kozenet_ui/actions/workflows/main.yml)
4
4
  ![Test Status](https://img.shields.io/badge/tests-passing-brightgreen?style=flat-square)
5
5
 
6
6
  Beautiful, minimal, Apple-inspired UI components for Rails.
@@ -59,10 +59,20 @@ module KozenetUi
59
59
  end
60
60
 
61
61
  initializer "kozenet_ui.assets" do |app|
62
+ # Only add asset paths and precompile for Sprockets (classic asset pipeline)
62
63
  if app.config.respond_to?(:assets) && app.config.assets.respond_to?(:paths)
63
- app.config.assets.paths << root.join("app/assets/stylesheets/kozenet_ui")
64
- app.config.assets.paths << root.join("app/assets/stylesheets/kozenet_ui/components")
65
- app.config.assets.paths << root.join("app/assets/images/kozenet_ui/icons")
64
+ %w[
65
+ app/assets/stylesheets/kozenet_ui
66
+ app/assets/stylesheets/kozenet_ui/components
67
+ app/assets/images/kozenet_ui/icons
68
+ ].each do |path|
69
+ app.config.assets.paths << root.join(path)
70
+ end
71
+ app.config.assets.precompile += %w[
72
+ kozenet_ui/tokens.css
73
+ kozenet_ui/base.css
74
+ kozenet_ui/components.css
75
+ ]
66
76
  end
67
77
  end
68
78
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module KozenetUi
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kozenet_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kozenet Pro