Sha256: 02eade34838634f6d12ceb2c3d9b2edf27ccba09ea6e5e5b1766ffcf8409f73b
Contents?: true
Size: 1.64 KB
Versions: 5
Compression:
Stored size: 1.64 KB
Contents
# frozen_string_literal: true module Cybele module Helpers module BasicAuthentication def configure_basic_authentication create_basic_authentication_files add_to_settings_yml add_to_dotenv_files include_basic_authentication_module configure_app_name(['config/settings.yml']) end private def create_basic_authentication_files # Concern file template 'basic_authentication/basic_authentication.rb', 'app/controllers/concerns/basic_authentication.rb', force: true end def add_to_settings_yml # Add basic authentication settings to the config/settings.yml file append_template_to_file 'config/settings.yml', 'basic_authentication/basic_authentication_settings.yml.erb' end def add_to_dotenv_files # Add basic authentication env to the all env files append_template_to_file('.env.sample', 'basic_authentication/no_basic_authentication.erb') append_template_to_file('.env.local', 'basic_authentication/no_basic_authentication.erb') append_template_to_file('.env.staging', 'basic_authentication/yes_basic_authentication.erb') append_template_to_file('.env.production', 'basic_authentication/no_basic_authentication.erb') end def include_basic_authentication_module inject_into_file 'app/controllers/application_controller.rb', template_content('basic_authentication/include_module.erb'), after: 'class ApplicationController < ActionController::Base' end end end end
Version data entries
5 entries across 5 versions & 1 rubygems