Class: DeviseGauth::Generators::InstallGenerator

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

Overview

Install Generator

Instance Method Summary collapse

Instance Method Details

#add_configsObject



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

def add_configs
  inject_into_file 'config/initializers/devise.rb', "\n  # ==> Devise Google Authenticator Extension\n  # Configure extension for devise\n\n" +
  "  # How long should the user have to enter their token. To change the default, uncomment and change the below:\n" +
  "  # config.ga_timeout = 3.minutes\n\n" +
  "  # Change time drift settings for valid token values. To change the default, uncomment and change the below:\n" +
  "  # config.ga_timedrift = 3\n\n" +
  "  # Change setting to how long to remember device before requiring another token. Change to nil to turn feature off.\n" +
  "  # To change the default, uncomment and change the below:\n" +
  "  # config.ga_remembertime = 1.month\n\n" +
  "  # Change setting to assign the application name used by code generator. Defaults to Rails.application.class.parent_name.\n" +
  "  # To change the default, uncomment and change the below:\n" +
  "  # config.ga_appname = 'example.com'\n\n" +
  "  # Change setting to bypass the Display QR page immediately after a user sign's up\n" +
  "  # To change the default, uncomment and change the below. Defaults to false:\n" +
  "  # config.ga_bypass_signup = true\n\n" + 
  "\n", before: /end[ |\n|]+\Z/
end

#copy_localeObject



29
30
31
# File 'lib/generators/devise_gauth/install_generator.rb', line 29

def copy_locale
  copy_file '../../../config/locales/en.yml', 'config/locales/devise.gauth.en.yml'
end