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: b1ab2c62c13503c0afc55aea6663a381a4d7ad81a363e9131a2d185ead576997
4
- data.tar.gz: 44faf8bb9335b81c978ba1a8c6a6cd105d4980a2c982874ce69fa203acce4ac5
3
+ metadata.gz: 6a10cacbe01eb49c8964a1dc6e2061e4b0aa80b0345d6560bf4353384146c61a
4
+ data.tar.gz: 1ca77ced97a199df79116b3023e3501b7072b5a680aca33fb142e303bba4136e
5
5
  SHA512:
6
- metadata.gz: fc48bffc1b39584a556e0a742095b56fbd29e22559280c873b7654572ae48c59eb5382bb3d2eddcee184b5f65c9033271c98383cfe04625a633550e8db964a27
7
- data.tar.gz: a2f8cd2ca05de73290728093d068e91dda6113e77de2f358e916b1c3425fdf2d1184ccccf55ab2aa6737f8c2751fb644cf850b8919c57d7ce3c07fde35940e87
6
+ metadata.gz: 4c579863550638fe0f4792406fb99b1ca21d577ae0c8e2e3794b9a9999862e547190ce10730f06415339b9f18b5965660afcf906833619a29b2c2c903183e0c5
7
+ data.tar.gz: c21f9c314e5861d0b9d64147280ac184c353f7c9516a460f73b27d609d6839b681e8f5a7e5dd9b327c1b0acf636bdc154066e086d395726efbe975c8e17914ae
@@ -14,6 +14,8 @@ module EitilWrapper
14
14
 
15
15
  def inherited(subclass)
16
16
  super
17
+
18
+ return if Eitil.skip_callback_helper_methods_for_models.include?(subclass.to_s.to_sym)
17
19
  subclass.use_eitil_callback_helper_methods
18
20
 
19
21
  rescue => e
@@ -36,6 +36,8 @@ module EitilWrapper
36
36
 
37
37
  def inherited(subclass)
38
38
  super
39
+
40
+ return if Eitil.skip_default_scopes_for_models.include?(subclass.to_s.to_sym)
39
41
  subclass.use_eitil_scopes
40
42
 
41
43
  rescue => e
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
@@ -1,5 +1,5 @@
1
1
  module Eitil
2
2
 
3
- VERSION = '1.1.37'
3
+ VERSION = '1.1.38'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eitil
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.37
4
+ version: 1.1.38
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jurriaan Schrofer