isomorfeus-redux 4.1.6 → 4.1.10
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/isomorfeus/execution_environment.rb +13 -54
- data/lib/isomorfeus/redux/imports.rb +1 -1
- data/lib/redux/store.rb +1 -1
- data/lib/redux/version.rb +1 -1
- data/lib/redux.rb +2 -2
- data/node_modules/.package-lock.json +3 -3
- data/node_modules/redux/CHANGELOG.md +4 -0
- data/node_modules/redux/index.d.ts +1 -1
- data/node_modules/redux/package.json +108 -108
- data/package.json +1 -1
- metadata +16 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61b4631f3ae1a6c276354d00803fb0d28554115e5eca8431322995021a5179de
|
4
|
+
data.tar.gz: f6fedce427ba705b3e33083d666b47a53edc15379294c909e1bad813e1dda10d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef819ad29575cf8749d2318f45a2281e094dfd3681fa46627bd04940d51b5c5b0de9ec5644666eebb55d26eff68f730969f33093bc85e23e3b24c77df52eb271
|
7
|
+
data.tar.gz: 8eb46a19020a8a012bab196322d2346768f645fc510b7eae99d90f83b9f8b5c639a69a03801274256656588135c2babd7086ea1957b9ddbb575c9e0a8d03d3cd
|
@@ -5,13 +5,8 @@ module Isomorfeus
|
|
5
5
|
attr_accessor :on_ssr
|
6
6
|
attr_accessor :on_server
|
7
7
|
attr_accessor :on_desktop
|
8
|
-
attr_accessor :on_ios
|
9
|
-
attr_accessor :on_android
|
10
8
|
attr_accessor :on_mobile
|
11
|
-
attr_accessor :
|
12
|
-
attr_accessor :on_database
|
13
|
-
attr_accessor :on_tvos
|
14
|
-
attr_accessor :on_androidtv
|
9
|
+
attr_accessor :on_tablet
|
15
10
|
attr_accessor :on_tv
|
16
11
|
|
17
12
|
def on_browser?
|
@@ -30,76 +25,40 @@ module Isomorfeus
|
|
30
25
|
end
|
31
26
|
|
32
27
|
def on_desktop?
|
33
|
-
# true if running
|
28
|
+
# true if running as desktop app
|
34
29
|
@on_desktop
|
35
30
|
end
|
36
31
|
|
37
|
-
# TODO the following need to be reworked a little, as react native is no longer a target
|
38
|
-
def on_ios?
|
39
|
-
# true if running in react-native on ios
|
40
|
-
@on_ios
|
41
|
-
end
|
42
|
-
|
43
|
-
def on_android?
|
44
|
-
# true if running in react-native on android
|
45
|
-
@on_android
|
46
|
-
end
|
47
|
-
|
48
32
|
def on_mobile?
|
49
|
-
# true if running
|
33
|
+
# true if running on mobile
|
50
34
|
@on_mobile
|
51
35
|
end
|
52
36
|
|
53
|
-
def
|
54
|
-
# true if running on a
|
55
|
-
@
|
56
|
-
end
|
57
|
-
|
58
|
-
def on_database?
|
59
|
-
# true if running in database context
|
60
|
-
@on_database
|
61
|
-
end
|
62
|
-
|
63
|
-
def on_tvos?
|
64
|
-
# true if running in react-native on tvOS
|
65
|
-
@on_tvos
|
66
|
-
end
|
67
|
-
|
68
|
-
def on_androidtv?
|
69
|
-
# true if running in react-native on androidtv
|
70
|
-
@on_androidtv
|
37
|
+
def on_tablet?
|
38
|
+
# true if running on a tablet
|
39
|
+
@on_tablet
|
71
40
|
end
|
72
41
|
|
73
42
|
def on_tv?
|
74
|
-
# true if running
|
43
|
+
# true if running on a tv
|
75
44
|
@on_tv
|
76
45
|
end
|
77
46
|
end
|
78
47
|
|
79
|
-
self.on_ssr = `(typeof process
|
48
|
+
self.on_ssr = `(typeof process === 'object' && typeof process.release === 'object' && typeof process.release.name === 'string' && process.release.name === 'node') ? true : false`
|
80
49
|
self.on_desktop = false
|
81
|
-
self.
|
82
|
-
self.
|
83
|
-
self.
|
84
|
-
self.on_tvos = `(typeof Platform === 'object') ? (Platform.isTV && Platform.OS.toLowerCase().includes('ios') && Platform.isTVOS) : false`
|
85
|
-
self.on_androidtv = `(typeof Platform === 'object') ? (Platform.isTV && Platform.OS.toLowerCase().includes('android')) : false`
|
86
|
-
self.on_tv = `(typeof Platform === 'object') ? Platform.isTV : false`
|
87
|
-
self.on_mobile = self.on_ios? || self.on_android?
|
88
|
-
self.on_database = false
|
50
|
+
self.on_tablet = false
|
51
|
+
self.on_tv = false
|
52
|
+
self.on_mobile = false
|
89
53
|
self.on_server = false
|
90
|
-
self.on_browser = !self.on_ssr? && !self.on_desktop? && !self.on_mobile? && !self.
|
54
|
+
self.on_browser = !self.on_ssr? && !self.on_desktop? && !self.on_mobile? && !self.on_tv?
|
91
55
|
else
|
92
56
|
class << self
|
93
57
|
def on_ssr?; false; end
|
94
58
|
def on_desktop?; false; end
|
95
|
-
def on_ios?; false; end
|
96
|
-
def on_android?; false; end
|
97
59
|
def on_mobile?; false; end
|
98
|
-
def
|
99
|
-
def on_database?; false; end
|
60
|
+
def on_tablet?; false; end
|
100
61
|
def on_browser?; false; end
|
101
|
-
def on_tvos?; false; end
|
102
|
-
def on_androidtv?; false; end
|
103
62
|
def on_tv?; false; end
|
104
63
|
|
105
64
|
def on_server?; true; end
|
@@ -7,7 +7,7 @@ module Isomorfeus
|
|
7
7
|
if Dir.exist?(imports_path)
|
8
8
|
%w[sass scss css].each do |ending|
|
9
9
|
styles_file = File.join(imports_path, 'stylesheets.' + ending)
|
10
|
-
Isomorfeus.add_web_js_import(styles_file) if File.exist(styles_file)
|
10
|
+
Isomorfeus.add_web_js_import(styles_file) if File.exist?(styles_file)
|
11
11
|
end
|
12
12
|
end
|
13
13
|
Isomorfeus.add_common_js_import('redux', 'Redux', '*')
|
data/lib/redux/store.rb
CHANGED
@@ -19,7 +19,7 @@ module Redux
|
|
19
19
|
Isomorfeus.store.add_reducer(reducer)
|
20
20
|
else
|
21
21
|
# otherwise just add it to the reducers, so that they will be used when initializing the store
|
22
|
-
preloaded_state[reducer.keys.first] = {} unless preloaded_state.
|
22
|
+
preloaded_state[reducer.keys.first] = {} unless preloaded_state.key?(reducer.keys.first)
|
23
23
|
reducers.merge!(reducer)
|
24
24
|
end
|
25
25
|
end
|
data/lib/redux/version.rb
CHANGED
data/lib/redux.rb
CHANGED
@@ -86,7 +86,7 @@ module Redux
|
|
86
86
|
|
87
87
|
def self.get_state_path(state, *path)
|
88
88
|
path.inject(state) do |state_el, path_el|
|
89
|
-
if state_el.
|
89
|
+
if state_el.key?(path_el)
|
90
90
|
state_el[path_el]
|
91
91
|
else
|
92
92
|
return nil
|
@@ -100,7 +100,7 @@ module Redux
|
|
100
100
|
if path_el == last_el
|
101
101
|
state_el[path_el] = value
|
102
102
|
state_el[path_el]
|
103
|
-
elsif !state_el.
|
103
|
+
elsif !state_el.key?(path_el)
|
104
104
|
state_el[path_el] = {}
|
105
105
|
state_el[path_el]
|
106
106
|
else
|
@@ -15,9 +15,9 @@
|
|
15
15
|
}
|
16
16
|
},
|
17
17
|
"node_modules/redux": {
|
18
|
-
"version": "4.1.
|
19
|
-
"resolved": "https://registry.npmjs.org/redux/-/redux-4.1.
|
20
|
-
"integrity": "sha512-
|
18
|
+
"version": "4.1.2",
|
19
|
+
"resolved": "https://registry.npmjs.org/redux/-/redux-4.1.2.tgz",
|
20
|
+
"integrity": "sha512-SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw==",
|
21
21
|
"dependencies": {
|
22
22
|
"@babel/runtime": "^7.9.2"
|
23
23
|
}
|
@@ -1,108 +1,108 @@
|
|
1
|
-
{
|
2
|
-
"name": "redux",
|
3
|
-
"version": "4.1.
|
4
|
-
"description": "Predictable state container for JavaScript apps",
|
5
|
-
"license": "MIT",
|
6
|
-
"homepage": "http://redux.js.org",
|
7
|
-
"repository": "github:reduxjs/redux",
|
8
|
-
"bugs": "https://github.com/reduxjs/redux/issues",
|
9
|
-
"keywords": [
|
10
|
-
"redux",
|
11
|
-
"reducer",
|
12
|
-
"state",
|
13
|
-
"predictable",
|
14
|
-
"functional",
|
15
|
-
"immutable",
|
16
|
-
"hot",
|
17
|
-
"live",
|
18
|
-
"replay",
|
19
|
-
"flux",
|
20
|
-
"elm"
|
21
|
-
],
|
22
|
-
"authors": [
|
23
|
-
"Dan Abramov <dan.abramov@me.com> (https://github.com/gaearon)",
|
24
|
-
"Andrew Clark <acdlite@me.com> (https://github.com/acdlite)"
|
25
|
-
],
|
26
|
-
"main": "lib/redux.js",
|
27
|
-
"unpkg": "dist/redux.js",
|
28
|
-
"module": "es/redux.js",
|
29
|
-
"typings": "./index.d.ts",
|
30
|
-
"files": [
|
31
|
-
"dist",
|
32
|
-
"lib",
|
33
|
-
"es",
|
34
|
-
"src",
|
35
|
-
"index.d.ts"
|
36
|
-
],
|
37
|
-
"scripts": {
|
38
|
-
"clean": "rimraf lib dist es coverage",
|
39
|
-
"format": "prettier --write \"{src,test}/**/*.{js,ts}\" index.d.ts \"**/*.md\"",
|
40
|
-
"format:check": "prettier --list-different \"{src,test}/**/*.{js,ts}\" index.d.ts \"**/*.md\"",
|
41
|
-
"lint": "eslint src test",
|
42
|
-
"test": "jest",
|
43
|
-
"test:watch": "npm test -- --watch",
|
44
|
-
"test:cov": "npm test -- --coverage",
|
45
|
-
"build": "rollup -c",
|
46
|
-
"pretest": "npm run build",
|
47
|
-
"prepublishOnly": "npm run clean && npm run format:check && npm run lint && npm test",
|
48
|
-
"examples:lint": "eslint examples",
|
49
|
-
"examples:test": "cross-env CI=true babel-node examples/testAll.js"
|
50
|
-
},
|
51
|
-
"dependencies": {
|
52
|
-
"@babel/runtime": "^7.9.2"
|
53
|
-
},
|
54
|
-
"devDependencies": {
|
55
|
-
"@babel/cli": "^7.8.4",
|
56
|
-
"@babel/core": "^7.9.0",
|
57
|
-
"@babel/node": "^7.8.7",
|
58
|
-
"@babel/plugin-external-helpers": "^7.8.3",
|
59
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
|
60
|
-
"@babel/plugin-transform-runtime": "^7.9.0",
|
61
|
-
"@babel/preset-env": "^7.9.5",
|
62
|
-
"@babel/preset-flow": "^7.9.0",
|
63
|
-
"@babel/preset-typescript": "^7.9.0",
|
64
|
-
"@babel/register": "^7.9.0",
|
65
|
-
"@rollup/plugin-babel": "^5.3.0",
|
66
|
-
"@rollup/plugin-node-resolve": "^7.1.3",
|
67
|
-
"@rollup/plugin-replace": "^2.3.2",
|
68
|
-
"@types/jest": "^25.2.1",
|
69
|
-
"@types/node": "^13.13.4",
|
70
|
-
"@typescript-eslint/eslint-plugin": "^2.29.0",
|
71
|
-
"@typescript-eslint/parser": "^2.29.0",
|
72
|
-
"babel-eslint": "^10.1.0",
|
73
|
-
"babel-jest": "^25.4.0",
|
74
|
-
"cross-env": "^7.0.2",
|
75
|
-
"eslint": "^6.8.0",
|
76
|
-
"eslint-config-react-app": "^5.2.1",
|
77
|
-
"eslint-import-resolver-typescript": "^2.0.0",
|
78
|
-
"eslint-plugin-flowtype": "^4.7.0",
|
79
|
-
"eslint-plugin-import": "^2.20.2",
|
80
|
-
"eslint-plugin-jsx-a11y": "^6.2.3",
|
81
|
-
"eslint-plugin-react": "^7.19.0",
|
82
|
-
"eslint-plugin-react-hooks": "^3.0.0",
|
83
|
-
"glob": "^7.1.6",
|
84
|
-
"jest": "^25.4.0",
|
85
|
-
"prettier": "^2.0.5",
|
86
|
-
"rimraf": "^3.0.2",
|
87
|
-
"rollup": "^2.7.2",
|
88
|
-
"rollup-plugin-terser": "^5.3.0",
|
89
|
-
"rollup-plugin-typescript2": "^0.27.0",
|
90
|
-
"rxjs": "^6.5.5",
|
91
|
-
"typescript": "^3.8.3",
|
92
|
-
"typings-tester": "^0.3.2"
|
93
|
-
},
|
94
|
-
"npmName": "redux",
|
95
|
-
"npmFileMap": [
|
96
|
-
{
|
97
|
-
"basePath": "/dist/",
|
98
|
-
"files": [
|
99
|
-
"*.js"
|
100
|
-
]
|
101
|
-
}
|
102
|
-
],
|
103
|
-
"jest": {
|
104
|
-
"testRegex": "(/test/.*\\.spec\\.[tj]s)$",
|
105
|
-
"coverageProvider": "v8"
|
106
|
-
},
|
107
|
-
"sideEffects": false
|
108
|
-
}
|
1
|
+
{
|
2
|
+
"name": "redux",
|
3
|
+
"version": "4.1.2",
|
4
|
+
"description": "Predictable state container for JavaScript apps",
|
5
|
+
"license": "MIT",
|
6
|
+
"homepage": "http://redux.js.org",
|
7
|
+
"repository": "github:reduxjs/redux",
|
8
|
+
"bugs": "https://github.com/reduxjs/redux/issues",
|
9
|
+
"keywords": [
|
10
|
+
"redux",
|
11
|
+
"reducer",
|
12
|
+
"state",
|
13
|
+
"predictable",
|
14
|
+
"functional",
|
15
|
+
"immutable",
|
16
|
+
"hot",
|
17
|
+
"live",
|
18
|
+
"replay",
|
19
|
+
"flux",
|
20
|
+
"elm"
|
21
|
+
],
|
22
|
+
"authors": [
|
23
|
+
"Dan Abramov <dan.abramov@me.com> (https://github.com/gaearon)",
|
24
|
+
"Andrew Clark <acdlite@me.com> (https://github.com/acdlite)"
|
25
|
+
],
|
26
|
+
"main": "lib/redux.js",
|
27
|
+
"unpkg": "dist/redux.js",
|
28
|
+
"module": "es/redux.js",
|
29
|
+
"typings": "./index.d.ts",
|
30
|
+
"files": [
|
31
|
+
"dist",
|
32
|
+
"lib",
|
33
|
+
"es",
|
34
|
+
"src",
|
35
|
+
"index.d.ts"
|
36
|
+
],
|
37
|
+
"scripts": {
|
38
|
+
"clean": "rimraf lib dist es coverage",
|
39
|
+
"format": "prettier --write \"{src,test}/**/*.{js,ts}\" index.d.ts \"**/*.md\"",
|
40
|
+
"format:check": "prettier --list-different \"{src,test}/**/*.{js,ts}\" index.d.ts \"**/*.md\"",
|
41
|
+
"lint": "eslint src test",
|
42
|
+
"test": "jest",
|
43
|
+
"test:watch": "npm test -- --watch",
|
44
|
+
"test:cov": "npm test -- --coverage",
|
45
|
+
"build": "rollup -c",
|
46
|
+
"pretest": "npm run build",
|
47
|
+
"prepublishOnly": "npm run clean && npm run format:check && npm run lint && npm test",
|
48
|
+
"examples:lint": "eslint examples",
|
49
|
+
"examples:test": "cross-env CI=true babel-node examples/testAll.js"
|
50
|
+
},
|
51
|
+
"dependencies": {
|
52
|
+
"@babel/runtime": "^7.9.2"
|
53
|
+
},
|
54
|
+
"devDependencies": {
|
55
|
+
"@babel/cli": "^7.8.4",
|
56
|
+
"@babel/core": "^7.9.0",
|
57
|
+
"@babel/node": "^7.8.7",
|
58
|
+
"@babel/plugin-external-helpers": "^7.8.3",
|
59
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
|
60
|
+
"@babel/plugin-transform-runtime": "^7.9.0",
|
61
|
+
"@babel/preset-env": "^7.9.5",
|
62
|
+
"@babel/preset-flow": "^7.9.0",
|
63
|
+
"@babel/preset-typescript": "^7.9.0",
|
64
|
+
"@babel/register": "^7.9.0",
|
65
|
+
"@rollup/plugin-babel": "^5.3.0",
|
66
|
+
"@rollup/plugin-node-resolve": "^7.1.3",
|
67
|
+
"@rollup/plugin-replace": "^2.3.2",
|
68
|
+
"@types/jest": "^25.2.1",
|
69
|
+
"@types/node": "^13.13.4",
|
70
|
+
"@typescript-eslint/eslint-plugin": "^2.29.0",
|
71
|
+
"@typescript-eslint/parser": "^2.29.0",
|
72
|
+
"babel-eslint": "^10.1.0",
|
73
|
+
"babel-jest": "^25.4.0",
|
74
|
+
"cross-env": "^7.0.2",
|
75
|
+
"eslint": "^6.8.0",
|
76
|
+
"eslint-config-react-app": "^5.2.1",
|
77
|
+
"eslint-import-resolver-typescript": "^2.0.0",
|
78
|
+
"eslint-plugin-flowtype": "^4.7.0",
|
79
|
+
"eslint-plugin-import": "^2.20.2",
|
80
|
+
"eslint-plugin-jsx-a11y": "^6.2.3",
|
81
|
+
"eslint-plugin-react": "^7.19.0",
|
82
|
+
"eslint-plugin-react-hooks": "^3.0.0",
|
83
|
+
"glob": "^7.1.6",
|
84
|
+
"jest": "^25.4.0",
|
85
|
+
"prettier": "^2.0.5",
|
86
|
+
"rimraf": "^3.0.2",
|
87
|
+
"rollup": "^2.7.2",
|
88
|
+
"rollup-plugin-terser": "^5.3.0",
|
89
|
+
"rollup-plugin-typescript2": "^0.27.0",
|
90
|
+
"rxjs": "^6.5.5",
|
91
|
+
"typescript": "^3.8.3",
|
92
|
+
"typings-tester": "^0.3.2"
|
93
|
+
},
|
94
|
+
"npmName": "redux",
|
95
|
+
"npmFileMap": [
|
96
|
+
{
|
97
|
+
"basePath": "/dist/",
|
98
|
+
"files": [
|
99
|
+
"*.js"
|
100
|
+
]
|
101
|
+
}
|
102
|
+
],
|
103
|
+
"jest": {
|
104
|
+
"testRegex": "(/test/.*\\.spec\\.[tj]s)$",
|
105
|
+
"coverageProvider": "v8"
|
106
|
+
},
|
107
|
+
"sideEffects": false
|
108
|
+
}
|
data/package.json
CHANGED
metadata
CHANGED
@@ -1,57 +1,57 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isomorfeus-redux
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.
|
4
|
+
version: 4.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Biedermann
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opal
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.2
|
19
|
+
version: 1.3.2
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.2
|
26
|
+
version: 1.3.2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: isomorfeus-asset-manager
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: 0.14.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: 0.14.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: isomorfeus-speednode
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.4.
|
47
|
+
version: 0.4.7
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.4.
|
54
|
+
version: 0.4.7
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rake
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -276,6 +276,7 @@ files:
|
|
276
276
|
- node_modules/@babel/runtime/helpers/writeOnlyError.js
|
277
277
|
- node_modules/@babel/runtime/package.json
|
278
278
|
- node_modules/@babel/runtime/regenerator/index.js
|
279
|
+
- node_modules/redux/CHANGELOG.md
|
279
280
|
- node_modules/redux/LICENSE.md
|
280
281
|
- node_modules/redux/README.md
|
281
282
|
- node_modules/redux/dist/redux.js
|
@@ -323,7 +324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
323
324
|
- !ruby/object:Gem::Version
|
324
325
|
version: '0'
|
325
326
|
requirements: []
|
326
|
-
rubygems_version: 3.2.
|
327
|
+
rubygems_version: 3.2.22
|
327
328
|
signing_key:
|
328
329
|
specification_version: 4
|
329
330
|
summary: Redux and Stores for Isomorfeus.
|