9
10
11
12
13
14
15
16
17
18
19
|
# File 'lib/generators/devise_google_authenticator/install_generator.rb', line 9
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" +
"\n", :before => /end[ |\n|]+\Z/
end
|