ruby_cms 0.1.8 → 0.1.9
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/generators/ruby_cms/install_generator.rb +1 -3
- data/lib/ruby_cms/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: 1f7daf58804d218f4b8e2e87841c9b8f66dbc78668b3b0819bb902cb82952c97
|
|
4
|
+
data.tar.gz: acb0830e517c078c8e5fe62eb1f148935adac513ba761f12d166e5c99d400622
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ddd67cc13c744e97c345185f68c3db4919f6115cb8440eeed9e17afb262bac749241282afec071e25e04429fdfd059ef9ac6113e1c47d0473b242aed397f3d3
|
|
7
|
+
data.tar.gz: c85d346d3b65f7ce7a51578b3d654ad1ca15c7e6f121dbc4387abd23f562b70bfb2255edaa06aa12b56f34ae02b985a92cd89d2ea1c578bc3005f6e0f64d2c01
|
data/CHANGELOG.md
CHANGED
|
@@ -399,9 +399,7 @@ module RubyCms
|
|
|
399
399
|
content = File.read(importmap_path)
|
|
400
400
|
lines_to_add = []
|
|
401
401
|
lines_to_add << %(pin "trix") unless content.include?('pin "trix"')
|
|
402
|
-
unless content.include?('pin "@rails/actiontext"')
|
|
403
|
-
lines_to_add << %(pin "@rails/actiontext", to: "actiontext.esm.js")
|
|
404
|
-
end
|
|
402
|
+
lines_to_add << %(pin "@rails/actiontext", to: "actiontext.esm.js") unless content.include?('pin "@rails/actiontext"')
|
|
405
403
|
return if lines_to_add.empty?
|
|
406
404
|
|
|
407
405
|
inject_into_file importmap_path.to_s, before: /^end/ do
|
data/lib/ruby_cms/version.rb
CHANGED