brut 0.2.1 → 0.2.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/brut/cli/apps/build_assets.rb +2 -2
- 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: 657d2ac0d7c8de2b4d7ed55cbe7bd399677a011d1ae545fc927fd570d1656e90
|
4
|
+
data.tar.gz: 29f11570fc3adffbd5ebd36480150a578c5d162fad03b1a9e0bb4dacd74cec14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 286b7fdca5f9c2e636e51078c6b8d209aa7360b0589cb796958831da4c5ddce37b1545897f90b2bc9fa4f14a34539765255d8526baa34e44d742a7cccfb0226f
|
7
|
+
data.tar.gz: 9c04ee17ff44afc0562941e7fc9ca5e94407d06d42bc59a86376f5013b5ab717e80cd6a5fd740cac4a9adbb588ee5efacba02d0ce905b36d35d5e3bffe2495ce
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -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