Sha256: b415be41979e34681c6e656e6919e09829767f43b5bf60b900863bbf749c1119

Contents?: true

Size: 989 Bytes

Versions: 3

Compression:

Stored size: 989 Bytes

Contents

# frozen_string_literal: true

require File.expand_path('boot', __dir__)

require 'rack/cors'
require 'rails/all'

Bundler.require(*Rails.groups)
require 'devise_token_auth'

module Dummy
  class Application < Rails::Application
    # Settings in config/environments/* take precedence over those specified here.
    # Application configuration should go into files in config/initializers
    # -- all .rb files in that directory are automatically loaded.

    # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
    # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
    # config.time_zone = 'Central Time (US & Canada)'

    # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
    # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
    # config.i18n.default_locale = :de
    config.autoload_paths << Rails.root.join('lib')
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
devise_token_auth-1.0.0 test/dummy/config/application.rb
devise_token_auth-1.0.0.rc2 test/dummy/config/application.rb
devise_token_auth-1.0.0.rc1 test/dummy/config/application.rb