bourbon_integrator 1.0.2 → 1.0.3

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: 5a847075203abf5a4105ccd1c9f91c4c8e25b406
4
- data.tar.gz: ef53a05a2223eb6bf49980a71a5c702ece5d8869
3
+ metadata.gz: e33f30f26e076ec41861295372f91f6dc1d94edc
4
+ data.tar.gz: 91df2ff007940a583294f0f0963f329446c54146
5
5
  SHA512:
6
- metadata.gz: 5a130a222c48ecfc99ea36f85b3914c43721e6cf3240e282c13ba1e2c197ebf25b737a923aa384622b18574bdbc5464577c8762d61caea077f606ce27ac639f4
7
- data.tar.gz: 836cbc2b8ada47dd83bf7bb81d4683e5e1b6f95032dda6bf3c7da02783633134dbde7e818b6aea80fd4c3ee367fcefa15f49e2dac661213a02cd42b301b42055
6
+ metadata.gz: 2ae36c6f666ca16231226c40d91f7687ec7f76af64dca50bf969fcb1094c73c0a78eb2080e976b7b612a08454196793cd92e42c2813baae58098c8b79f032a2e
7
+ data.tar.gz: 58c2d3c7cc3f2c1ac029d6fe33250c97d78e1cd987353bf710c8c9e39b9c77b4044d466844dce02c870aea4b4b18ca291f8776ab672f076112ad816f84aef089
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.0.3 (2016.10.17)
2
+
3
+ * use sass-globbing when call sass
4
+
1
5
  === 1.0.2 (2016.10.14)
2
6
 
3
7
  * disable sourcemap when assets verbose is disabled
@@ -25,7 +25,8 @@ module BourbonIntegrator
25
25
  def run
26
26
  @output.puts "*** Compile CSS ***"
27
27
  @executor.system(
28
- "sass --scss --style #{sass_style} #{sourcemap} --update #{sass_path}:#{stylesheets_path}"
28
+ "sass -r sass-globbing --scss --style #{sass_style} #{sourcemap}"\
29
+ " --update #{sass_path}:#{stylesheets_path}"
29
30
  )
30
31
  end
31
32
  end
@@ -25,7 +25,8 @@ module BourbonIntegrator
25
25
  def run
26
26
  @output.puts "*** Watching for changes ***"
27
27
  @executor.exec(
28
- "sass --scss --style #{sass_style} #{sourcemap} --watch #{sass_path}:#{stylesheets_path}"
28
+ "sass -r sass-globbing --scss --style #{sass_style} #{sourcemap}"\
29
+ " --watch #{sass_path}:#{stylesheets_path}"
29
30
  )
30
31
  end
31
32
  end
@@ -18,5 +18,5 @@
18
18
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module BourbonIntegrator
21
- VERSION = "1.0.2".freeze
21
+ VERSION = "1.0.3".freeze
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bourbon_integrator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Szymon Kopciewski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-14 00:00:00.000000000 Z
11
+ date: 2016-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: piko_model