assigns_has_many_through_relations 0.0.4 → 0.0.5
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9051aa8468b71a40fe4182504535bb1a88c3353b
|
4
|
+
data.tar.gz: 44885213a703333b2b7a31383d1e028f86e2ee6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8958ba48851003d24e46c4005d8805d3c9ed3756f61fd1990a71a6e17c92d5b8f6be648a561c408199acd61f0a1895f427e5df244b76d03d06aac7b65d848f2
|
7
|
+
data.tar.gz: 31fe8c803af72c0b924360d4ffb20ce80390db5d6c7bfc18467b074c2de444662fdd5c1300b701cef36f063fe81975612b04a4e6f9ecd8c5645ce72d5bd5413c
|
@@ -1,6 +1,8 @@
|
|
1
1
|
require "assigns_has_many_through_relations/version"
|
2
2
|
require "assigns_has_many_through_relations/engine"
|
3
3
|
require "assigns_has_many_through_relations/configuration"
|
4
|
+
require "assigns_has_many_through_relations/controller_concern"
|
5
|
+
require "assigns_has_many_through_relations/model_concern"
|
4
6
|
|
5
7
|
module AssignsHasManyThroughRelations
|
6
8
|
BOOTSTRAP_FLASH_MAP = {
|
@@ -9,9 +11,6 @@ module AssignsHasManyThroughRelations
|
|
9
11
|
}
|
10
12
|
BOOTSTRAP_FLASH_MAP.default = 'info'
|
11
13
|
|
12
|
-
autoload :ControllerConcern, 'assigns_has_many_through_relations/controller_concern'
|
13
|
-
autoload :ModelConcern, 'assigns_has_many_through_relations/model_concern'
|
14
|
-
|
15
14
|
class << self
|
16
15
|
attr_reader :config
|
17
16
|
delegate :auth_filter, to: :config
|