brut 0.2.1 → 0.2.3
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 +8 -0
- data/Gemfile.lock +1 -1
- data/lib/brut/cli/apps/build_assets.rb +3 -3
- data/lib/brut/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: 4748377a7df73751800a069f1174f5184163fb8223dda9c7bd0500f3b92c56c6
|
4
|
+
data.tar.gz: d6d30cc552cba2d7851e31182a99ba994c47e17e915847d430d6eeaf49181640
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5df001d9a8b18fc423191a8eeaf6021855235efd10560e2add89d1acc2375880654e261b13091867c96d6cc995ce25725c2c71a44c7a8a7acf06c16d10a6643d
|
7
|
+
data.tar.gz: 413ecc176b9d041a74a944a63fbcc990eb6c138a8d69a4de25d101396bce706060c467878c68c16f58dacdd70855b76661368bc497554e53428dfb7cdcea1ddc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Brut CHANGELOG
|
2
2
|
|
3
|
+
## v0.2.3 - July 10, 2025
|
4
|
+
|
5
|
+
* **References nonexistent class**
|
6
|
+
|
7
|
+
## v0.2.2 - July 10, 2025
|
8
|
+
|
9
|
+
* **Address incorrect underscorization on classnames**
|
10
|
+
|
3
11
|
## v0.2.1 - July 10, 2025
|
4
12
|
|
5
13
|
* **Fix bug with select component where a blank value would cause an exception**
|
data/Gemfile.lock
CHANGED
@@ -19,7 +19,7 @@ class Brut::CLI::Apps::BuildAssets < Brut::CLI::App
|
|
19
19
|
out.puts "Removing #{asset_metadata_file}"
|
20
20
|
FileUtils.rm_f(asset_metadata_file)
|
21
21
|
end
|
22
|
-
delegate_to_commands(Images,
|
22
|
+
delegate_to_commands(Images, Js, Css)
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
@@ -38,7 +38,7 @@ This is to ensure that any images your code references will end up in the public
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
class
|
41
|
+
class Css < Brut::CLI::Command
|
42
42
|
description "Builds a single CSS file suitable for sending to the browser"
|
43
43
|
|
44
44
|
detailed_description %{
|
@@ -77,7 +77,7 @@ This is to ensure that any images your code references will end up in the public
|
|
77
77
|
asset_metadata.save!
|
78
78
|
end
|
79
79
|
end
|
80
|
-
class
|
80
|
+
class Js < Brut::CLI::Command
|
81
81
|
description "Builds and bundles JavaScript destined for the browser"
|
82
82
|
opts.on("--output-file=FILE","Bundle to create that will be sent to the browser, relative to the JS public folder. Default is app.js")
|
83
83
|
opts.on("--source-file=FILE","Entry point used to create the bundle, relative to the source JS folder. Default is index.js")
|
data/lib/brut/version.rb
CHANGED