thecore 1.7.5 → 1.7.7
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac2a4a8230557c6d47c3b5ea14cef7572085dcdbeaba4502057adb034b09e9c2
|
4
|
+
data.tar.gz: 03315e29c8afbe070096596c28174c971e04a602357cf084cef4c3a78b7a5a51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 335815191d7bb59c910275500671061227dfedd3cb345daa3ebff278c4d7a1fa0f7006b47fdc547c855f5ca8e6f46bb73c8fd4cf1f6aa65306b12af11a61e288
|
7
|
+
data.tar.gz: 39446ed37eb5eb09069d8557b44543a9055284ce28b79914e11a7937b4fc124ccb13c79bf9758340fb8a786548ba7b58084fa1da7c4d2ef3c43816bf72d14774
|
@@ -0,0 +1,8 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
config.after_initialize do
|
3
|
+
if Rails.env.development?
|
4
|
+
Rails.configuration.eager_load_namespaces.each(&:eager_load!) if Rails.version.to_i == 5 #Rails 5
|
5
|
+
Zeitwerk::Loader.eager_load_all if Rails.version.to_i >= 6 #Rails 6
|
6
|
+
end
|
7
|
+
end
|
8
|
+
end
|
data/lib/thecore/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thecore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriele Tassoni
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -354,6 +354,7 @@ files:
|
|
354
354
|
- config/initializers/rails_admin.rb
|
355
355
|
- config/initializers/rails_application_config.rb
|
356
356
|
- config/initializers/thecore_active_storage_concern.rb
|
357
|
+
- config/initializers/thecore_after_initialize.rb
|
357
358
|
- config/initializers/thecore_concern.rb
|
358
359
|
- config/locales/en.activerecord.yml
|
359
360
|
- config/locales/en.contact_mailer.custom.yml
|
@@ -475,7 +476,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
475
476
|
- !ruby/object:Gem::Version
|
476
477
|
version: '0'
|
477
478
|
requirements: []
|
478
|
-
|
479
|
+
rubyforge_project:
|
480
|
+
rubygems_version: 2.7.6.2
|
479
481
|
signing_key:
|
480
482
|
specification_version: 4
|
481
483
|
summary: Core engine to be included in every application to provide base functionalities.
|