thecore_ui_commons 3.2.11 → 3.2.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/layouts/_head.html.erb +1 -1
- data/config/routes.rb +7 -5
- data/lib/thecore_ui_commons/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab2b0a4d6beb94a040d513737b10af47adfad070816a651920b92c78b270483d
|
4
|
+
data.tar.gz: 67056b8be25cdaf5a6e6c0062b8ffd534602af9f14dcceb362573205f59d01f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19dba462d5005ad8c55eaf952688fc28c4a71134ccfd12d7413d5aba2329b3a0248844cdd96f7ec5442f7c1091977c1d502bc0d3b24c9254c5c72dfd2b275747
|
7
|
+
data.tar.gz: a6e730b170d1e2264ace59b87e38ee51605bec5bdb1226f0ae82c938bd28404a7e6bf5af0b64d2c305365dc542171fce3e01cc6c6e5b203620873e0f2f51e73a
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<meta charset="UTF-8">
|
2
|
-
<meta name="
|
2
|
+
<meta name="mobile-web-app-capable" content="yes">
|
3
3
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
4
4
|
<title><%= Settings.app_name rescue "Thecore" %></title>
|
5
5
|
<link rel="icon" type="image/x-icon" href="<%= image_path 'favicon.ico' %>">
|
data/config/routes.rb
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
Rails.application.routes.draw do
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
scope ENV.fetch("RAILS_RELATIVE_URL_ROOT", "/") do
|
3
|
+
devise_for :users
|
4
|
+
devise_scope :user do
|
5
|
+
root to: "devise/sessions#new"
|
6
|
+
end
|
6
7
|
|
7
|
-
|
8
|
+
get '/info/swagger', to: 'info#swagger'
|
9
|
+
end
|
8
10
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thecore_ui_commons
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriele Tassoni
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-16 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: thecore_backend_commons
|
@@ -159,7 +158,6 @@ metadata:
|
|
159
158
|
homepage_uri: https://github.com/gabrieletassoni/thecore_ui_commons
|
160
159
|
source_code_uri: https://github.com/gabrieletassoni/thecore_ui_commons
|
161
160
|
changelog_uri: https://github.com/gabrieletassoni/thecore_ui_commons/blob/master/CHANGELOG.md
|
162
|
-
post_install_message:
|
163
161
|
rdoc_options: []
|
164
162
|
require_paths:
|
165
163
|
- lib
|
@@ -174,8 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
174
172
|
- !ruby/object:Gem::Version
|
175
173
|
version: '0'
|
176
174
|
requirements: []
|
177
|
-
rubygems_version: 3.
|
178
|
-
signing_key:
|
175
|
+
rubygems_version: 3.6.2
|
179
176
|
specification_version: 4
|
180
177
|
summary: Common artifacts for the UIs.
|
181
178
|
test_files: []
|