sassc-rails 0.2.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/lib/sassc/rails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13e923a5671106afcf185b2fc94277c977f705e7
|
4
|
+
data.tar.gz: 26df784dee9ea049c606ee99c40fbd1f94d3ed94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a88b408238e15765af1d9097f91351997f0233d7462049eb7657698a5bcaa717fc3ac0fc27de1558c0c656656839381662957776c0a00104233a3d0e63671b13
|
7
|
+
data.tar.gz: d1addfadef3f0e1363ede16664fcd2d5fb69649837ea1102a1d45b8e763f090b7e44aaaa48e4ae0b1ebac3d18f027504088eafb7dbbf89c765f1559e1d0264bf
|
data/README.md
CHANGED
@@ -34,6 +34,9 @@ add the following configuration to your development.rb file:
|
|
34
34
|
config.sass.inline_source_maps = true
|
35
35
|
```
|
36
36
|
|
37
|
+
After adding this config line, you may need to clear your assets cache
|
38
|
+
(`rm -r tmp/cache/assets`), stop spring, and restart your rails server.
|
39
|
+
|
37
40
|
Note, as indicated, these source maps are *inline*. They will not generate additional
|
38
41
|
files or anything like that. Instead, they will be appended to the compiled
|
39
42
|
application.css file.
|
data/lib/sassc/rails/version.rb
CHANGED