isomorfeus-redux 4.0.20 → 4.0.21

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd996d49213dec418ce28f56c5c26b10aaed39210235403d2f93e2103f1cd099
4
- data.tar.gz: c45d9514d1def03ce507852cd8aa030619d2559faaa178ca689c70396e3c0d5f
3
+ metadata.gz: 19bbbb5e2f13c5e706f5d47d12e848f5734b7f83345a72c1c756608566c12101
4
+ data.tar.gz: c93fc41b2e042af1da72e4ee2990f7055586e515cc6eaa8816a5a96062e8ce0c
5
5
  SHA512:
6
- metadata.gz: 21126d3193d8614a5b4d31236c1a9fe15153e8e3b07331dfc5a8bc08cd0f76b853d06585e2abcde523ecefe851a99d7234f919cbbf0177978c71abba49fe4c4b
7
- data.tar.gz: 815660743e328ec45f474e38511b94802adb3e5e1d8449c7a0cf8377168cf6fb8dccdd50ba7d211bac4131d15e354f0727718c29633a9ec62b77bd15937b4e52
6
+ metadata.gz: b412b3d03d000c9015cee26818b5873cfa7655438fbd63339ae8b2e40d9437991ee18844f1978f1bb7ab06d37ef851c658f4189bd09c2ab7b6a7a13d12afec39
7
+ data.tar.gz: dbd289172c68b7f5dd5136bea2a5499bbf20d0140db0ae509194d66dbc8f6f846b56329b690741282438be56179698b047b4fc5605f6bf4c5d338bba5f78bcff
@@ -53,8 +53,8 @@ module Isomorfeus
53
53
 
54
54
  self.on_ssr = `(typeof process === 'object' && typeof process.release === 'object' && typeof process.release.name === 'string' && process.release.name === 'node') ? true : false`
55
55
  self.on_desktop = `(typeof navigator === 'object' && typeof navigator.userAgent === 'string' && navigator.userAgent.toLowerCase().indexOf(' electron/') > -1) ? true : false`
56
- self.on_ios = `(typeof Platform === 'object' && typeof Platform.OS === 'string' && Platform.OS.toLowerCase().includes?('ios')) ? true : false`
57
- self.on_android = `(typeof Platform === 'object' && typeof Platform.OS === 'string' && Platform.OS.toLowerCase().includes?('android')) ? true : false`
56
+ self.on_ios = `(typeof Platform === 'object' && typeof Platform.OS === 'string' && Platform.OS.toLowerCase().includes('ios')) ? true : false`
57
+ self.on_android = `(typeof Platform === 'object' && typeof Platform.OS === 'string' && Platform.OS.toLowerCase().includes('android')) ? true : false`
58
58
  self.on_mobile = self.on_ios? || self.on_android?
59
59
  self.on_database = false
60
60
  self.on_browser = !self.on_ssr? && !self.on_desktop? && !self.on_mobile? && !self.on_database?
data/lib/redux/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Redux
2
- VERSION = '4.0.20'
2
+ VERSION = '4.0.21'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isomorfeus-redux
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.20
4
+ version: 4.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Biedermann