main
1require File.expand_path('../boot', __FILE__)
2
3# Pick the frameworks you want:
4require "active_record/railtie"
5require "action_controller/railtie"
6require "action_mailer/railtie"
7require "sprockets/railtie"
8# require "rails/test_unit/railtie"
9
10# Require the gems listed in Gemfile, including any gems
11# you've limited to :test, :development, or :production.
12Bundler.require(*Rails.groups)
13
14module Urkel
15 class Application < Rails::Application
16 # Settings in config/environments/* take precedence over those specified here.
17 # Application configuration should go into files in config/initializers
18 # -- all .rb files in that directory are automatically loaded.
19
20 # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
21 # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
22 # config.time_zone = 'Central Time (US & Canada)'
23
24 # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
25 # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
26 # config.i18n.default_locale = :de
27 config.autoload_paths << "#{Rails.root}/app/models/services"
28 end
29end