File: application.rb

package info (click to toggle)
ruby-devise-token-authenticatable 0.5.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 276 kB
  • sloc: ruby: 1,059; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 456 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../boot', __FILE__)

module Devise
  module TokenAuthenticatable
    class RailsApp < Rails::Application
      config.active_support.deprecation         = :log
      config.action_mailer.default_url_options  = { host: "localhost", port: 3000 }
      config.action_mailer.delivery_method      = :test
      config.i18n.enforce_available_locales     = false
      config.eager_load                         = false
    end
  end
end