cssbundling-rails 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cssbundling/version.rb +1 -1
- data/lib/install/install.rb +3 -3
- 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: 2797362606014e22f06d64b71862e559ade59ef92900346619f9a409d2152012
|
4
|
+
data.tar.gz: bf6461b042e39d6642cacaf283be4b3a11c97e12b7153465c3c4c825a23eeb72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf137fecb7c1ec88fafc3d27bb36c5466605e4fe3336f07a7a7e35e9079252ed7a4fa29319e1da6855e3b8e1c6813ede5debff6cdfa605f1cc6ccd2b4f614a41
|
7
|
+
data.tar.gz: 3bd5553f3033beb8f46906c2728c7f7b941aad7c3d0d7c446635324f6bcaf9d87b67edb12babc232ca01a863968c16b22d2bc6c128b6740f003ef5b30dc44c9c
|
data/lib/cssbundling/version.rb
CHANGED
data/lib/install/install.rb
CHANGED
@@ -4,10 +4,10 @@ keep_file "app/assets/builds"
|
|
4
4
|
|
5
5
|
if (sprockets_manifest_path = Rails.root.join("app/assets/config/manifest.js")).exist?
|
6
6
|
append_to_file sprockets_manifest_path, %(//= link_tree ../builds\n)
|
7
|
-
end
|
8
7
|
|
9
|
-
say "Stop linking stylesheets automatically"
|
10
|
-
gsub_file "app/assets/config/manifest.js", "//= link_directory ../stylesheets .css\n", ""
|
8
|
+
say "Stop linking stylesheets automatically"
|
9
|
+
gsub_file "app/assets/config/manifest.js", "//= link_directory ../stylesheets .css\n", ""
|
10
|
+
end
|
11
11
|
|
12
12
|
if Rails.root.join(".gitignore").exist?
|
13
13
|
append_to_file(".gitignore", %(\n/app/assets/builds/*\n!/app/assets/builds/.keep\n))
|