inertia 0.1.7 → 0.1.8

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
  SHA256:
3
- metadata.gz: 7a66e180f06a0bd4e006aac5df57caa2a7362174c0ea563de81f058585619bb5
4
- data.tar.gz: 573daa445b2339ba68496cc483304939a8d87ba17dd83d9e5af48eb5171bb163
3
+ metadata.gz: 3a04f1fdb4dcea173b53a4a068922ea06995426962d3dd0a041f385b6861e886
4
+ data.tar.gz: fbfb8d7be55afff396b06b706689099b9dbaa8e364ed83be257abbdc8eb0c506
5
5
  SHA512:
6
- metadata.gz: 2f99960e31e07b2524378d2cea50a8878d04c5440cc8bda95fa9d812929d31ac2c2b2cfd4838f83c40fb87f00bd80029939d6125e739531001b3cd30f78c3941
7
- data.tar.gz: 8050e917a92ac280e8187514b0241a33878b45b80f6fb2a14e12bf93f597337bded4b8bbb2fe33ab62476b57281173a7350034f9c027ffd60e1953aed821e80b
6
+ metadata.gz: '099d2a8e7209af51406619e84efe811f72cd810767d8d9299bcc1fc5a142376a067040d04201260f3a697b1956bb125489fd4f233e0b008718ccd8f781865ddc'
7
+ data.tar.gz: 5f0b3d16df3746c0c719592350a5ba4b0f1b592d1c11d74d69a2379808521f87ada0fac2d50f24492f1721f97509534c84b603058cb1c1958a138cb6c71dba25
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- inertia (0.1.7)
4
+ inertia (0.1.8)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/History.md CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ 0.1.8 / 2018-10-21
3
+ ==================
4
+
5
+ * Make sure ||'s are chained
6
+
2
7
  0.1.7 / 2018-10-21
3
8
  ==================
4
9
 
data/lib/inertia/mass.rb CHANGED
@@ -56,9 +56,9 @@ module Inertia
56
56
  def ignored?
57
57
  !text? ||
58
58
  scss? && Inertia.config.ignore_scss ||
59
- js? && Inertia.config.ignore_js
60
- haml? && Inertia.config.ignore_haml
61
- rabl? && Inertia.config.ignore_rabl
59
+ js? && Inertia.config.ignore_js ||
60
+ haml? && Inertia.config.ignore_haml ||
61
+ rabl? && Inertia.config.ignore_rabl ||
62
62
  erb? && Inertia.config.ignore_erb
63
63
  end
64
64
  end
@@ -1,3 +1,3 @@
1
1
  module Inertia
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inertia
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Hood