thecore_ui_commons 3.2.18 → 3.2.19

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ed8e75f2274156d17b6270729140f053870a7acf38030f04a63798138a1ec81
4
- data.tar.gz: f9f72f78226a44178fd48e6fbd3602dd207b74513950565377f6992af8e419c7
3
+ metadata.gz: 3c1002b188260b869b716c901cb694761733e619fc53f952f0c216011affd2f7
4
+ data.tar.gz: ed85eb5507a54268095a5166478f5be74de1a1681b9900694dbf919f2135d115
5
5
  SHA512:
6
- metadata.gz: d160542d4f26b7067495e1eae09823969c4839ec46911b57b6233de4f8dbaf99ff9793be0592ba7f9914687f7ef63bb159b3b06e8a533b2665a3d2f4892cfc95
7
- data.tar.gz: 7c18363f36ee50179b91652326f24145a1a66182c5998670ce1c77945488f9b766c888c9a363fc44a0a533568db04825a5e336c95801b87a4c39a36fa35c6312
6
+ metadata.gz: 3c900c50dce0c3d637b5df48db3c52920cd90796e06ca1ba34db643cd99bce2b5e3e766e56c53cfc74d1bc06ccb9d3715e61b1a9ae4b3ff1c664c09a9978878a
7
+ data.tar.gz: c185a201d77ffda59db2dcfcb558486e1acce505b0d470dbb170ec8bbd72f84397398d0e75c4df4f26fac1448cd84f45a10e04fb26fca4bd9554474f5debdca0
@@ -2,6 +2,5 @@ Rails.application.configure do
2
2
  config.after_initialize do
3
3
  # Controllers
4
4
  ApplicationController.send(:include, ConcernCommonApplicationController)
5
- User.send(:include, ThecoreUiCommonsUserConcern)
6
5
  end
7
6
  end
@@ -1,3 +1,3 @@
1
1
  module ThecoreUiCommons
2
- VERSION = "3.2.18".freeze
2
+ VERSION = "3.2.19".freeze
3
3
  end
metadata CHANGED
@@ -1,13 +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.18
4
+ version: 3.2.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-06 00:00:00.000000000 Z
10
+ date: 2025-02-12 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: thecore_backend_commons
@@ -127,7 +127,6 @@ files:
127
127
  - config/initializers/application_config.rb
128
128
  - config/initializers/assets.rb
129
129
  - config/initializers/concern_common_application_controller.rb
130
- - config/initializers/concern_user.rb
131
130
  - config/initializers/helper_charts.rb
132
131
  - config/locales/en.ra_settings.yml
133
132
  - config/locales/en.simple_form.yml
@@ -1,10 +0,0 @@
1
- puts "User Concern from ThecoreUiCommons"
2
- require 'active_support/concern'
3
-
4
- module ThecoreUiCommonsUserConcern
5
- extend ActiveSupport::Concern
6
-
7
- included do
8
- devise :trackable, :timeoutable, timeout_in: 30.minutes
9
- end
10
- end