2016-07-07 17:47:47 -05:00
|
|
|
require_relative 'boot'
|
2016-01-12 18:43:00 -06:00
|
|
|
|
|
|
|
require 'rails/all'
|
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
|
2016-01-18 19:48:42 -06:00
|
|
|
module Parsley
|
2016-01-12 18:43:00 -06: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.
|
2016-01-21 14:25:11 -06:00
|
|
|
config.time_zone = 'Central Time (US & Canada)'
|
2016-01-12 18:43:00 -06:00
|
|
|
end
|
|
|
|
end
|