eitil 1.1.37 → 1.1.38
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: 6a10cacbe01eb49c8964a1dc6e2061e4b0aa80b0345d6560bf4353384146c61a
|
|
4
|
+
data.tar.gz: 1ca77ced97a199df79116b3023e3501b7072b5a680aca33fb142e303bba4136e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c579863550638fe0f4792406fb99b1ca21d577ae0c8e2e3794b9a9999862e547190ce10730f06415339b9f18b5965660afcf906833619a29b2c2c903183e0c5
|
|
7
|
+
data.tar.gz: c21f9c314e5861d0b9d64147280ac184c353f7c9516a460f73b27d609d6839b681e8f5a7e5dd9b327c1b0acf636bdc154066e086d395726efbe975c8e17914ae
|
data/lib/eitil/railtie.rb
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
|
|
2
|
+
|
|
3
|
+
|
|
2
4
|
# Constants
|
|
3
5
|
|
|
4
6
|
module Eitil
|
|
@@ -9,8 +11,53 @@ module Eitil
|
|
|
9
11
|
|
|
10
12
|
end
|
|
11
13
|
|
|
14
|
+
|
|
15
|
+
|
|
12
16
|
# Configuration
|
|
13
17
|
|
|
18
|
+
module Eitil
|
|
19
|
+
class Railtie < ::Rails::Railtie
|
|
20
|
+
|
|
21
|
+
# The following configuration has its own special place in the boot sequence:
|
|
22
|
+
# on the one hand, it should run before the initialization of Eitil (gem), but
|
|
23
|
+
# read config assigned by the main app – which is only loaded AFTER all gems have
|
|
24
|
+
# been initialized.
|
|
25
|
+
|
|
26
|
+
# Therefore, we only require the specified file from the main app, after defining
|
|
27
|
+
# the possible configurations for the Eitil railtie. This way we escape the boot
|
|
28
|
+
# sequence's dedault order.
|
|
29
|
+
|
|
30
|
+
config.before_initialize do |eitil|
|
|
31
|
+
|
|
32
|
+
Eitil.mattr_accessor :controller_ivars,
|
|
33
|
+
:skip_default_scopes_for_models,
|
|
34
|
+
:skip_callback_helper_methods_for_models
|
|
35
|
+
|
|
36
|
+
Eitil.controller_ivars ||= []
|
|
37
|
+
Eitil.skip_default_scopes_for_models ||= []
|
|
38
|
+
Eitil.skip_callback_helper_methods_for_models ||= []
|
|
39
|
+
|
|
40
|
+
def Eitil.set_config(&block)
|
|
41
|
+
yield Eitil
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
config_path = Rails.root + 'config/initializers/eitil.rb'
|
|
45
|
+
|
|
46
|
+
if File.exists? config_path
|
|
47
|
+
puts "Loading Eitil config from #{config_path}..."
|
|
48
|
+
load config_path
|
|
49
|
+
else
|
|
50
|
+
puts "Eitil config not found at #{config_path}, resorting to defaults..."
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
# Loading
|
|
60
|
+
|
|
14
61
|
module Eitil
|
|
15
62
|
|
|
16
63
|
class Railtie < ::Rails::Railtie
|
|
@@ -27,12 +74,4 @@ module Eitil
|
|
|
27
74
|
|
|
28
75
|
end
|
|
29
76
|
|
|
30
|
-
mattr_accessor :controller_ivars
|
|
31
|
-
|
|
32
|
-
self.controller_ivars ||= []
|
|
33
|
-
|
|
34
|
-
def self.set_config(&block)
|
|
35
|
-
yield self
|
|
36
|
-
end
|
|
37
|
-
|
|
38
77
|
end
|
data/lib/eitil/version.rb
CHANGED