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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b4143ae1c71fb813785c00b58ed14ad8e46ca14b478e3f1877269e11e1bc80b
4
- data.tar.gz: 4abf1ea02f989223bdb0e22fc44360ce1df8e2ddff8237482a9f97b43f712955
3
+ metadata.gz: 4748377a7df73751800a069f1174f5184163fb8223dda9c7bd0500f3b92c56c6
4
+ data.tar.gz: d6d30cc552cba2d7851e31182a99ba994c47e17e915847d430d6eeaf49181640
5
5
  SHA512:
6
- metadata.gz: ffa7f2050d752e63ce98151bd6825f94d5c0ecdbe19ce7ff96a57c1fa26c56ad63d00c450f8d3b4fb4a8ba9a0852680569d22b7dc25e7d16b1881fc0cef22f66
7
- data.tar.gz: 67e37d24873dd84185881f16c63120dbf50de4660e60821d40e5c2dd2e66d487da70be283e85b26c09cf3ecd0f95d02a9f7e2072aa0379049ea490296495a2cb
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- brut (0.2.1)
4
+ brut (0.2.3)
5
5
  concurrent-ruby
6
6
  i18n
7
7
  irb
@@ -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, JS, CSS)
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 CSS < Brut::CLI::Command
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 JS < Brut::CLI::Command
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
@@ -1,4 +1,4 @@
1
1
  module Brut
2
2
  # @!visibility private
3
- VERSION = "0.2.1"
3
+ VERSION = "0.2.3"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brut
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Bryant Copeland