Sha256: ea70b45467ecffe53cb87c1ccec4ec1e97a72b99bf877fd445fde55bdd296fff
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
# frozen_string_literal: true module Bullet module Generators class InstallGenerator < ::Rails::Generators::Base desc <<-DESC Description: Enable bullet in development/test for your application. DESC def enable_in_development environment(nil, env: 'development') do <<-"FILE".strip config.after_initialize do Bullet.enable = true Bullet.alert = true Bullet.bullet_logger = true Bullet.console = true # Bullet.growl = true Bullet.rails_logger = true Bullet.add_footer = true end FILE end say 'Enabled bullet in config/environments/development.rb' end def enable_in_test if yes?('Would you like to enable bullet in test environment? (y/n)') environment(nil, env: 'test') do <<-"FILE".strip 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 end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bullet-5.7.6 | lib/generators/bullet/install_generator.rb |
bullet-5.7.5 | lib/generators/bullet/install_generator.rb |