adopt-a-hydrant/config/application.rb

27 lines
1.1 KiB
Ruby
Raw Normal View History

2011-02-14 18:28:51 +00:00
require File.expand_path('../boot', __FILE__)
2011-07-30 15:52:38 +00:00
require 'rails/all'
2011-02-14 18:28:51 +00:00
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
2014-04-09 07:02:20 +00:00
Bundler.require(*Rails.groups)
2011-02-14 18:28:51 +00:00
module AdoptAThing
2011-02-14 18:28:51 +00:00
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]
2012-06-18 17:49:28 +00:00
# config.i18n.default_locale = :de
2014-11-29 11:36:18 +00:00
# Do not swallow errors in after_commit/after_rollback callbacks.
config.active_record.raise_in_transactional_callbacks = true
2011-02-14 18:28:51 +00:00
end
end