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 +4 -4
- data/lib/middleman-bem-html.rb +1 -1
- data/middleman-bem-html.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6bea72cfa88ec076b54e37b784ead4efe26000f9
|
|
4
|
+
data.tar.gz: 087eca74b3733c775cecfbc258a88307afa3204b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5cd2806434ce99390cc46817fae085ffc202481dd4d9ef1402a8261feb58ab7cf569eecc4f5deb4d68165a0d97ba43020e84b221b4a8f8f271694b32f24b1c12
|
|
7
|
+
data.tar.gz: 2ab920274d193c511fcd2bb91460fe3193818b41cb2889610291a0991452135e56ccae0247443e7e4977516d2d77c2f8473af90a04318aeddbd98ff767b01066
|
data/lib/middleman-bem-html.rb
CHANGED
|
@@ -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
|
|
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")
|
data/middleman-bem-html.gemspec
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2016-07-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: middleman-core
|