kozenet_ui 0.1.0 → 0.1.1
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/CHANGELOG.md +4 -0
- data/lib/kozenet_ui/engine.rb +14 -4
- data/lib/kozenet_ui/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87c0ad03dcc95a00eb4fc883b4552269ffc7f1f49269ff0b4745dddb2b2af9c6
|
|
4
|
+
data.tar.gz: f1f5dbcd45413d494e07583e70b1dc3b8942674501a60437f2c269ee7e866132
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 013ed5e8fb76bc73bd551bca5cc02d13af5b938f222491e13cba05abe36da159811c2eef6fdb966ccc40e14fc799e528a4ea289bed64c7548a038d95a3b07f49
|
|
7
|
+
data.tar.gz: b199a4a49fc12253127e191bdc8aef83a15a426c5c26dd3a8c926a9ecc5f257a5c6f39320fe3ba353118a542b9d77a0e771f547959fa521687549097bc2647ee
|
data/CHANGELOG.md
CHANGED
data/lib/kozenet_ui/engine.rb
CHANGED
|
@@ -59,11 +59,21 @@ module KozenetUi
|
|
|
59
59
|
end
|
|
60
60
|
|
|
61
61
|
initializer "kozenet_ui.assets" do |app|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
app
|
|
65
|
-
app
|
|
62
|
+
# Add all Kozenet UI asset paths for stylesheets and images
|
|
63
|
+
%w[
|
|
64
|
+
app/assets/stylesheets/kozenet_ui
|
|
65
|
+
app/assets/stylesheets/kozenet_ui/components
|
|
66
|
+
app/assets/images/kozenet_ui/icons
|
|
67
|
+
].each do |path|
|
|
68
|
+
app.config.assets.paths << root.join(path)
|
|
66
69
|
end
|
|
70
|
+
|
|
71
|
+
# Precompile Kozenet UI CSS files for all asset setups
|
|
72
|
+
app.config.assets.precompile += %w[
|
|
73
|
+
kozenet_ui/tokens.css
|
|
74
|
+
kozenet_ui/base.css
|
|
75
|
+
kozenet_ui/components.css
|
|
76
|
+
]
|
|
67
77
|
end
|
|
68
78
|
end
|
|
69
79
|
|
data/lib/kozenet_ui/version.rb
CHANGED