Class: Bullet::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/bullet/install_generator.rb

Instance Method Summary collapse

Instance Method Details

#enable_in_developmentObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/generators/bullet/install_generator.rb', line 11

def enable_in_development
  environment(nil, env: 'development') do
    <<~FILE
      config.after_initialize do
        Bullet.enable        = true
        Bullet.alert         = true
        Bullet.bullet_logger = true
        Bullet.console       = true
        Bullet.rails_logger  = true
        Bullet.add_footer    = true
      end

    FILE
  end

  say 'Enabled bullet in config/environments/development.rb'
end

#enable_in_testObject



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/generators/bullet/install_generator.rb', line 29

def enable_in_test
  return unless yes?('Would you like to enable bullet in test environment? (y/n)')

  environment(nil, env: 'test') do
    <<~FILE
      config.after_initialize do
        Bullet.enable        = true
        Bullet.bullet_logger = true
        Bullet.raise         = true # raise an error if n+1 query occurs
      end

    FILE
  end

  say 'Enabled bullet in config/environments/test.rb'
end