styler-sass 0.1.3 → 0.1.4
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/README.md +7 -3
- data/bin/styler +0 -0
- data/lib/styler/generator.rb +4 -2
- data/lib/styler/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: bb1369f5c03c82ff576c438dde35fc33b846cbf4
|
4
|
+
data.tar.gz: f0d9d30675d13ad60935df1b1a45295ac632e6fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07935093c4bf88db9820e0efda3761888ade380fdd48051e226bdbfffe00be08166c0f3efecdef0368f21ddd5f0470e26429298f2f55cd0fd7b8def0a9f18e14
|
7
|
+
data.tar.gz: 179b9829e7a556ce2a0e1bf94375abbf8faa5c315b0c2f4a3c590ee885f8f7be6a37077b9d0ed9c2b306a15dc4ea133b057419d20ebd55876727bb76c35b92f0
|
data/README.md
CHANGED
@@ -20,13 +20,17 @@ Or install it yourself as:
|
|
20
20
|
|
21
21
|
$ gem install styler-sass
|
22
22
|
|
23
|
+
To Install files to vendor folder
|
24
|
+
|
25
|
+
$ styler install
|
26
|
+
|
23
27
|
## Usage
|
24
28
|
|
25
29
|
Add This line to application.css.scss
|
26
30
|
``` css
|
27
|
-
@import "bourbon";
|
28
|
-
@import "normalize";
|
29
|
-
@import "bootstrap"
|
31
|
+
@import "styler/bourbon";
|
32
|
+
@import "styler/normalize";
|
33
|
+
@import "styler/bootstrap"
|
30
34
|
```
|
31
35
|
## Development
|
32
36
|
|
data/bin/styler
CHANGED
File without changes
|
data/lib/styler/generator.rb
CHANGED
@@ -42,9 +42,11 @@ module Styler
|
|
42
42
|
|
43
43
|
def install_path
|
44
44
|
@install_path ||= if options[:path]
|
45
|
-
Pathname.new(File.join(options[:path], 'styler'))
|
45
|
+
Pathname.new(File.join(options[:path], 'vendor/assets/stylesheets/styler'))
|
46
|
+
#Pathname.new(File.join(options[:path], 'styler'))
|
46
47
|
else
|
47
|
-
Pathname.new('styler')
|
48
|
+
Pathname.new('vendor/assets/stylesheets/styler')
|
49
|
+
#Pathname.new('styler')
|
48
50
|
end
|
49
51
|
end
|
50
52
|
|
data/lib/styler/version.rb
CHANGED