thecore_ui_commons 2.2.9 → 2.3.4
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/app/assets/javascripts/thecore_ui_commons/thecore.js +9 -0
- data/app/assets/stylesheets/thecore_ui_commons/thecore.scss +9 -0
- data/app/views/devise/sessions/new.html.erb +1 -1
- data/db/seeds.rb +3 -0
- data/lib/concerns/thecore_ui_commons_user.rb +1 -1
- data/lib/thecore_ui_commons/engine.rb +3 -0
- metadata +3 -3
- data/db/migrate/20210208142646_add_settings_for_uploader.rb +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00a17cec4f9a2303e93a0a6d9f8757a8c6d3df430aa0d79b1c218f0d88831e0a
|
4
|
+
data.tar.gz: b78f6b740d795d96cde5272c959b7b4ec699be48ea66df6f260f3d5dabf99571
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '099a64bcd24150e97436a6b336cb09b464da3cf39f4d765329c9478438d483dfdd2a0ad605a0a414670f050bedf9ecacf119dbdecb0200645beb5ebf0701a94e'
|
7
|
+
data.tar.gz: 2fde66df3905ba1ea002471dab0637a6ac06d3f19450072ef5c5beaffa44726e39fee7cc669c2bb3169da79bc9e39d97442142e436fa623df80bc1e4a340cbee
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<div class="col-md-4 col-md-offset-4">
|
1
|
+
<div class="col-md-4 col-md-offset-4" id="login-form">
|
2
2
|
<%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
|
3
3
|
<div class="field">
|
4
4
|
<%= f.text_field :login, autofocus: true, :class => "form-control", placeholder: t("devise.sessions.new.login") %>
|
data/db/seeds.rb
ADDED
@@ -1,6 +1,9 @@
|
|
1
1
|
module ThecoreUiCommons
|
2
2
|
class Engine < ::Rails::Engine
|
3
3
|
initializer 'thecore_ui_commons.add_to_migrations' do |app|
|
4
|
+
# Adds the list of Thecore Engines, so to manage seeds loading, i.e.:
|
5
|
+
# Thecore::Base.thecore_engines.each { |engine| engine.load_seed }
|
6
|
+
Thecore::Base.thecore_engines << self.class
|
4
7
|
unless app.root.to_s.match root.to_s
|
5
8
|
# APPEND TO MAIN APP MIGRATIONS FROM THIS GEM
|
6
9
|
config.paths['db/migrate'].expanded.each do |expanded_path|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thecore_ui_commons
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriele Tassoni
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thecore_background_jobs
|
@@ -180,7 +180,7 @@ files:
|
|
180
180
|
- config/routes.rb
|
181
181
|
- db/migrate/20200515070620_add_username_to_user.rb
|
182
182
|
- db/migrate/20200515132932_add_rememberable_to_user.rb
|
183
|
-
- db/
|
183
|
+
- db/seeds.rb
|
184
184
|
- lib/concerns/thecore_ui_commons_user.rb
|
185
185
|
- lib/tasks/thecore_ui_commons_tasks.rake
|
186
186
|
- lib/thecore_ui_commons.rb
|