isomorfeus-installer 1.0.0.epsilon2 → 1.0.0.epsilon3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/isomorfeus/installer/templates/Gemfile.erb +1 -1
- data/lib/isomorfeus/installer/templates/app.rb.erb +3 -1
- data/lib/isomorfeus/installer/templates/my_app.rb.erb +1 -0
- data/lib/isomorfeus/installer/templates/not_found_404_component.rb.erb +7 -0
- data/lib/isomorfeus/installer/version.rb +1 -1
- data/lib/isomorfeus/installer.rb +2 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71c616442138693f7dbdc4159f0164405d123d5b5fb3f05fc4f35da2d0e42053
|
4
|
+
data.tar.gz: da87de6ab6ef8560149113ac18eb64f217aef602fb0249cf0d00791d4d6ef370
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c27feb6c699b8cfff6247faa4966b47a61275c89390562ccacc43fb7705e0c71d76ea3f0d3398e63781aace742ae6af8b739c1e9d2b682dc95d855eba83644c3
|
7
|
+
data.tar.gz: f447b2bd1e616c3305f085d032629106d202efe7303106847e90e79b5dfec5f72e993817eb3205c99c7b0f9c47458225b0db54ea781706d3c28e3761e12464cc
|
@@ -11,7 +11,7 @@ gem 'opal-activesupport', '~> 0.3.3'
|
|
11
11
|
gem 'opal-webpack-loader', '>= 0.9.2'
|
12
12
|
|
13
13
|
gem 'isomorfeus-redux', '~> 4.0.11'
|
14
|
-
gem 'isomorfeus-react', '>= 16.9.
|
14
|
+
gem 'isomorfeus-react', '>= 16.9.5'
|
15
15
|
gem 'isomorfeus-policy', <%= isomorfeus_policy %>
|
16
16
|
gem 'isomorfeus-transport', <%= isomorfeus_transport %>
|
17
17
|
gem 'isomorfeus-data', <%= isomorfeus_data %>
|
@@ -4,6 +4,7 @@ class <%= app_class %> < LucidApp::Base
|
|
4
4
|
Switch do
|
5
5
|
Route(path: '/', exact: true, component: HelloComponent.JS[:react_component])
|
6
6
|
Route(path: '/welcome', exact: true, component: WelcomeComponent.JS[:react_component])
|
7
|
+
Route(component: NotFound404Component.JS[:react_component])
|
7
8
|
end
|
8
9
|
end
|
9
10
|
end
|
data/lib/isomorfeus/installer.rb
CHANGED
@@ -209,6 +209,8 @@ module Isomorfeus
|
|
209
209
|
File.join(isomorfeus_path, 'components', 'hello_component.rb'), {})
|
210
210
|
create_file_from_template('navigation_links.rb.erb',
|
211
211
|
File.join(isomorfeus_path, 'components', 'navigation_links.rb'), {})
|
212
|
+
create_file_from_template('not_found_404_component.rb.erb',
|
213
|
+
File.join(isomorfeus_path, 'components', 'not_found_404_component.rb'), {})
|
212
214
|
create_file_from_template('welcome_component.rb.erb',
|
213
215
|
File.join(isomorfeus_path, 'components', 'welcome_component.rb'), {})
|
214
216
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isomorfeus-installer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.epsilon3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Biedermann
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-08-
|
11
|
+
date: 2019-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -149,6 +149,7 @@ files:
|
|
149
149
|
- lib/isomorfeus/installer/templates/isomorfeus_web_worker_loader.rb.erb
|
150
150
|
- lib/isomorfeus/installer/templates/my_app.rb.erb
|
151
151
|
- lib/isomorfeus/installer/templates/navigation_links.rb.erb
|
152
|
+
- lib/isomorfeus/installer/templates/not_found_404_component.rb.erb
|
152
153
|
- lib/isomorfeus/installer/templates/package.json.erb
|
153
154
|
- lib/isomorfeus/installer/templates/production.js.erb
|
154
155
|
- lib/isomorfeus/installer/templates/spec_helper.rb.erb
|