kono_utils_bootstrap_view4 0.1.0.pre.rc.5 → 0.1.0.pre.rc.6
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c62da0f5f24c4ce4effc81cbaeeef91af342e7dbaa936e5261bb85ad6c6a53ef
|
4
|
+
data.tar.gz: 577e2024d05fbb368c6c55f3a32115568c8b88d3233bd743db48b2abe64a8e0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 341289d7335b48ceb0ef0a95e25101e28414ae48e5946b9513b4a2873e907e5dabef0bf56d570b1d68c71e5e388003ef833f7e7ee040a22f5a11ab3a7f8d2169
|
7
|
+
data.tar.gz: fa75ad97dd151759d76be418727d5f1e2ca5dcdc6a8856a1f3d6881e5eee21deb60506c599f784dc19fad1a6bc437c62ea70a05f38bf9493bdb13957286b9e60
|
@@ -1,12 +1,20 @@
|
|
1
|
-
require
|
2
|
-
|
3
|
-
loader.ignore("#{__dir__}/generators")
|
4
|
-
loader.enable_reloading # you need to opt-in before setup
|
5
|
-
loader.setup
|
1
|
+
require 'kono_utils'
|
2
|
+
require 'active_support'
|
6
3
|
|
7
|
-
|
4
|
+
require "kono_utils_bootstrap_view4/engine"
|
8
5
|
|
9
6
|
module KonoUtilsBootstrapView4
|
7
|
+
extend ActiveSupport::Autoload
|
8
|
+
|
9
|
+
autoload :ApplicationIconHelper
|
10
|
+
autoload :BaseClassConceptNs
|
11
|
+
autoload :BaseSearch
|
12
|
+
autoload :Configuration
|
13
|
+
autoload :EditableField
|
14
|
+
autoload :Engine
|
15
|
+
autoload :PaginateProxer
|
16
|
+
autoload :SearchFormBuilder
|
17
|
+
autoload :VERSION
|
10
18
|
|
11
19
|
class << self
|
12
20
|
attr_writer :configuration
|
@@ -22,5 +30,3 @@ module KonoUtilsBootstrapView4
|
|
22
30
|
end
|
23
31
|
|
24
32
|
end
|
25
|
-
|
26
|
-
loader.eager_load
|
@@ -11,9 +11,6 @@ module KonoUtilsBootstrapView4
|
|
11
11
|
require 'data-confirm-modal'
|
12
12
|
require 'kono_utils'
|
13
13
|
|
14
|
-
# questa parte serve a Zeitwerk per identificare concepts come una directory da cui caricare il codice
|
15
|
-
config.autoload_paths << File.expand_path("../../app/concepts", __dir__)
|
16
|
-
|
17
14
|
initializer 'kono_utils_bootstrap_view4.append_views', :before => 'kono_utils.append_views', :group => :all do |app|
|
18
15
|
ActionController::Base.append_view_path KonoUtilsBootstrapView4::Engine.root.join("app", "views", "kono_utils")
|
19
16
|
ActionController::Base.append_view_path KonoUtilsBootstrapView4::Engine.root.join("app", "views", "kono_utils", "base_editing")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kono_utils_bootstrap_view4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0.pre.rc.
|
4
|
+
version: 0.1.0.pre.rc.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marino Bonetti
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -86,20 +86,6 @@ dependencies:
|
|
86
86
|
- - ">="
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: '0'
|
89
|
-
- !ruby/object:Gem::Dependency
|
90
|
-
name: zeitwerk
|
91
|
-
requirement: !ruby/object:Gem::Requirement
|
92
|
-
requirements:
|
93
|
-
- - ">="
|
94
|
-
- !ruby/object:Gem::Version
|
95
|
-
version: '0'
|
96
|
-
type: :runtime
|
97
|
-
prerelease: false
|
98
|
-
version_requirements: !ruby/object:Gem::Requirement
|
99
|
-
requirements:
|
100
|
-
- - ">="
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: '0'
|
103
89
|
- !ruby/object:Gem::Dependency
|
104
90
|
name: trailblazer-cells
|
105
91
|
requirement: !ruby/object:Gem::Requirement
|