isomorfeus-redux 4.0.23 → 4.1.0

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: c525619e9881d6b7be5127a4e22cf1bfe07a81bb2e520fdce10d859f18d9e108
4
- data.tar.gz: 975e7ecf09ce6cf4f27e8bcd46babbf5021f1959c1490e4b3d78fb0458bba6f1
3
+ metadata.gz: eee10cde82ff56029869c6158c2e0eb99dc5df7bf7746920d2d155023870cc51
4
+ data.tar.gz: 312c159a65766706fb871cca8caf8d5c3d8cf037fb6bdb6384b5933c5821f113
5
5
  SHA512:
6
- metadata.gz: c2c718656620da8bc17c0819000c33f8dc078f967375762d6bcb65150b97bc0a73673b6064cdca5e13c2e1b27a1b36b3b8e2f78d7890ac1a5190b05b9537b72d
7
- data.tar.gz: 717b8ed5104d107c8b768495885c6fd38220c6698f4651495eac85b3c98d707f98bb744ee89a14d8b859cb63a8606fa6a0b7395bff790e0b4903ec0ef9794522
6
+ metadata.gz: a38191643a83bec9f169c8d645c076a539408d3ea4417c11c284a3b91ccf3ce6ca0fafe2105f5da1a5c051d0bdab18118735c8eee22dd771654b478c6529e3b9
7
+ data.tar.gz: baf7135019055ef0377a1a542130482dec78cd7119bc9d1c20f55294f645492d49fa122bfc067fec7c55ddcce199abc563fec9b3f8402b3154912cedc6aace26
data/README.md CHANGED
@@ -7,12 +7,12 @@ At the [Isomorfeus Framework Project](http://isomorfeus.com)
7
7
 
8
8
  ## Versioning
9
9
  isomorfeus-redux version follows the Redux version which features and API it implements.
10
- Isomorfeus-redux 4.0.x implements features and the API of Redux 4.0 and should be used with Redux 4.0
10
+ Isomorfeus-redux 4.1.x implements features and the API of Redux 4.1 and should be used with Redux 4.1
11
11
 
12
12
  ## Installation
13
13
  To install redux with the matching version:
14
14
  ```
15
- yarn add redux@4.0.5
15
+ yarn add redux@4.1.0
16
16
  ```
17
17
  then add to the Gemfile:
18
18
  ```ruby
@@ -34,7 +34,7 @@ For full functionality the following are required:
34
34
  For the Gemfile:
35
35
  ```ruby
36
36
  gem 'opal', github: 'janbiedermann/opal', branch: 'es6_modules_1_1'
37
- gem 'opal-webpack-loader', '~> 0.9.10'
37
+ gem 'opal-webpack-loader', '~> 0.10.1'
38
38
  ```
39
39
 
40
40
  ## Usage within Isomorfeus
@@ -19,7 +19,7 @@ module Kernel
19
19
 
20
20
  if RUBY_ENGINE == 'opal'
21
21
  def after(time_ms, &block)
22
- `setTimeout(#{block.to_n}, time_ms);`
22
+ `setTimeout(#{block.to_n}, time_ms)`
23
23
  end
24
24
  else
25
25
  def after(time_ms, &block)
@@ -48,6 +48,11 @@ module Isomorfeus
48
48
  @on_mobile
49
49
  end
50
50
 
51
+ def on_pad?
52
+ # true if running on a pad
53
+ @on_pad
54
+ end
55
+
51
56
  def on_database?
52
57
  # true if running in database context
53
58
  @on_database
@@ -70,16 +75,17 @@ module Isomorfeus
70
75
  end
71
76
 
72
77
  self.on_ssr = `(typeof process === 'object' && typeof process.release === 'object' && typeof process.release.name === 'string' && process.release.name === 'node') ? true : false`
73
- self.on_desktop = `(typeof navigator === 'object' && typeof navigator.userAgent === 'string' && navigator.userAgent.toLowerCase().indexOf(' electron/') > -1) ? true : false`
74
- self.on_ios = `(typeof Platform === 'object' && typeof Platform.OS === 'string' && Platform.OS.toLowerCase().includes('ios')) ? true : false`
75
- self.on_android = `(typeof Platform === 'object' && typeof Platform.OS === 'string' && Platform.OS.toLowerCase().includes('android')) ? true : false`
78
+ self.on_desktop = false
79
+ self.on_ios = `(typeof Platform === 'object' && Platform.OS.toLowerCase().includes('ios')) ? true : false`
80
+ self.on_android = `(typeof Platform === 'object' && Platform.OS.toLowerCase().includes('android')) ? true : false`
81
+ self.on_pad = `(typeof Platform === 'object') ? (Platform.OS.toLowerCase().includes('ios') && Platform.isPad) : false`
82
+ self.on_tvos = `(typeof Platform === 'object') ? (Platform.isTV && Platform.OS.toLowerCase().includes('ios') && Platform.isTVOS) : false`
83
+ self.on_androidtv = `(typeof Platform === 'object') ? (Platform.isTV && Platform.OS.toLowerCase().includes('android')) : false`
84
+ self.on_tv = `(typeof Platform === 'object') ? Platform.isTV : false`
76
85
  self.on_mobile = self.on_ios? || self.on_android?
77
86
  self.on_database = false
78
- self.on_browser = !self.on_ssr? && !self.on_desktop? && !self.on_mobile? && !self.on_database?
79
87
  self.on_server = false
80
- self.on_tvos = false
81
- self.on_androidtv = false
82
- self.on_tv = false
88
+ self.on_browser = !self.on_ssr? && !self.on_desktop? && !self.on_mobile? && !self.on_database? && !self.on_tv?
83
89
  else
84
90
  class << self
85
91
  def on_ssr?; false; end
@@ -87,15 +93,14 @@ module Isomorfeus
87
93
  def on_ios?; false; end
88
94
  def on_android?; false; end
89
95
  def on_mobile?; false; end
96
+ def on_pad?; false; end
90
97
  def on_database?; false; end
91
98
  def on_browser?; false; end
92
99
  def on_tvos?; false; end
93
100
  def on_androidtv?; false; end
94
101
  def on_tv?; false; end
95
102
 
96
- def on_server?
97
- true # so true ...
98
- end
103
+ def on_server?; true; end
99
104
  end
100
105
  end
101
106
  end
data/lib/redux/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Redux
2
- VERSION = '4.0.23'
2
+ VERSION = '4.1.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isomorfeus-redux
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.23
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Biedermann
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-08 00:00:00.000000000 Z
11
+ date: 2021-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: opal
@@ -64,7 +64,7 @@ licenses:
64
64
  - MIT
65
65
  metadata:
66
66
  github_repo: ssh://github.com/isomorfeus/gems
67
- post_install_message:
67
+ post_install_message:
68
68
  rdoc_options: []
69
69
  require_paths:
70
70
  - lib
@@ -79,8 +79,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  - !ruby/object:Gem::Version
80
80
  version: '0'
81
81
  requirements: []
82
- rubygems_version: 3.0.6
83
- signing_key:
82
+ rubygems_version: 3.2.15
83
+ signing_key:
84
84
  specification_version: 4
85
85
  summary: Redux and Stores for Isomorfeus.
86
86
  test_files: []