SassMyLess 0.9 → 1.0

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: e695dace2c87b7f94efe5ba53f92b605659f4efd
4
- data.tar.gz: a8e5259195c17a55f9f4c43fecf561770039fe6a
3
+ metadata.gz: a814fabec9d002b7ee97571f379d66fc851a0313
4
+ data.tar.gz: 44a7e1b37509d247bd55286152d80148b2dd2d0b
5
5
  SHA512:
6
- metadata.gz: 4e831997ec0912a125169b52d24b4de042ce4bce0e979e39e46a972b0099225cb7b0748200076175721b702d3107fc055c7799b132cbb88fef8b6a39cbcf523a
7
- data.tar.gz: 4c1d8b4c6180080a293a3680dd10756e1664135ff7e434927d30f04c76988708fab1f3f7625c042f456da1b30c1c01637365ea47804aa4987975127df43ca718
6
+ metadata.gz: 110a0ed11d403f676af5eb5d1915add0a4f1da30b7dd5606c4ef68865a91442f9f95861862230b1e896fa6ff24dec2e937c55b9dbb1ccf6e537f6588c3f36a37
7
+ data.tar.gz: eefae563dc4e64c373d2b87951dc086717b7e4878996e5f5f466fedd927c2f00b060194917a160aae2c6bfd13c832e1956e0fc104e522383f0ef94be7014d3bf
@@ -1,4 +1,5 @@
1
1
  require "SassMyLess/version"
2
+ require 'fileutils'
2
3
 
3
4
  module SassMyLess
4
5
  class Base
@@ -14,7 +15,7 @@ module SassMyLess
14
15
  def self.convert(input_dir, output_dir)
15
16
  input_path = File.expand_path("#{input_dir}")
16
17
  output_path = File.expand_path("#{output_dir}")
17
- FileUtils.mkdir_p(input_path) unless Dir.exists?(output_path)
18
+ FileUtils.mkdir_p(output_path) unless Dir.exists?(output_path)
18
19
  FileUtils.cp_r "#{input_path}/.", "#{output_path}"
19
20
  self.traverse_dir output_path
20
21
  end
@@ -1,3 +1,3 @@
1
1
  module SassMyLess
2
- VERSION = "0.9"
2
+ VERSION = "1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: SassMyLess
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.9'
4
+ version: '1.0'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Bordinc