middleman-bem-html 1.0.1 → 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: 26e4c5bb74924edf2372c094c3ef63ee6e72c1ce
4
- data.tar.gz: 44c17a39685b5762bd5b828c9a7f28dcca516d1b
3
+ metadata.gz: 6bea72cfa88ec076b54e37b784ead4efe26000f9
4
+ data.tar.gz: 087eca74b3733c775cecfbc258a88307afa3204b
5
5
  SHA512:
6
- metadata.gz: 5dfe42cf4b92df86d33bedca54fc3240376c119b8514633a036580c15e6e9788a3a00d7c1f3e650c3cdf894e5744355cbad6e10a46f0596e2e4c1fdf23e89e7c
7
- data.tar.gz: 3b0504febac3530765572cb1a215e58c81e125ccc6a2cf4b5901d52cd1b18858eaa74cd95b3f34de5a39d2c92e1cd6d22c027c554a65aee93584404cce4f142f
6
+ metadata.gz: 5cd2806434ce99390cc46817fae085ffc202481dd4d9ef1402a8261feb58ab7cf569eecc4f5deb4d68165a0d97ba43020e84b221b4a8f8f271694b32f24b1c12
7
+ data.tar.gz: 2ab920274d193c511fcd2bb91460fe3193818b41cb2889610291a0991452135e56ccae0247443e7e4977516d2d77c2f8473af90a04318aeddbd98ff767b01066
@@ -25,7 +25,7 @@ class ::Middleman::Extension::BemHtml < ::Middleman::Extension
25
25
  # and http://github.com/oncomouse/postcss-deadclass to remove all the cruft.
26
26
 
27
27
  # Set config[:internal_css] to false if you are using an external_pipeline and postcss-deadclass
28
- runInternalDeCrufter = app.config.internal_css || true
28
+ runInternalDeCrufter = app.config.internal_css.nil? ? true : app.config.internal_css
29
29
  if runInternalDeCrufter
30
30
  classesToKeep = app.config.classes_to_keep || []
31
31
  cssFiles = Dir.glob("#{app.config.build_dir}/#{app.config.css_dir}/**/*.css")
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "middleman-bem-html"
6
- s.version = "1.0.1"
6
+ s.version = "1.0.3"
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Andrew Pilsch"]
9
9
  s.email = ["apilsch@tamu.edu"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-bem-html
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Pilsch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-02 00:00:00.000000000 Z
11
+ date: 2016-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: middleman-core