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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8768c92f6d978fd3850b95591fa544c91ccf68a6
4
- data.tar.gz: ddeee8d33a990f59a741652d74e7b04e298cb6b3
3
+ metadata.gz: bb1369f5c03c82ff576c438dde35fc33b846cbf4
4
+ data.tar.gz: f0d9d30675d13ad60935df1b1a45295ac632e6fa
5
5
  SHA512:
6
- metadata.gz: 83d97d09095ff25979d0df4fe911f80300452ba7db7315a234380b48f8866dd0cb8f36d80785fbc85819b76b9fec2933db2e5dc23cebf56ecbce9554745bccf1
7
- data.tar.gz: 681ab72b428c2fac2d731858c2a1f8182bb7508987662017177e723a5e0ab30a5204fa6996672f995fbfaa2dabde23388498e4ed16846818ce0a8fff4159db23
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
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module Styler
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: styler-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alinuxfriend