application.rb 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #---
  2. # Excerpted from "Agile Web Development with Rails",
  3. # published by The Pragmatic Bookshelf.
  4. # Copyrights apply to this code. It may not be used to create training material,
  5. # courses, books, articles, and the like. Contact us if you are in doubt.
  6. # We make no guarantees that this code is fit for any purpose.
  7. # Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information.
  8. #---
  9. #---
  10. # Excerpted from "Agile Web Development with Rails, 4rd Ed.",
  11. # published by The Pragmatic Bookshelf.
  12. # Copyrights apply to this code. It may not be used to create training material,
  13. # courses, books, articles, and the like. Contact us if you are in doubt.
  14. # We make no guarantees that this code is fit for any purpose.
  15. # Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information.
  16. #---
  17. require File.expand_path('../boot', __FILE__)
  18. require 'rails/all'
  19. # If you have a Gemfile, require the gems listed there, including any gems
  20. # you've limited to :test, :development, or :production.
  21. Bundler.require(:default, Rails.env) if defined?(Bundler)
  22. module Depot
  23. class Application < Rails::Application
  24. # Settings in config/environments/* take precedence over those specified here.
  25. # Application configuration should go into files in config/initializers
  26. # -- all .rb files in that directory are automatically loaded.
  27. # Custom directories with classes and modules you want to be autoloadable.
  28. # config.autoload_paths += %W(#{config.root}/extras)
  29. # Only load the plugins named here, in the order given (default is alphabetical).
  30. # :all can be used as a placeholder for all plugins not explicitly named.
  31. # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
  32. # Activate observers that should always be running.
  33. # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
  34. # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
  35. # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
  36. # config.time_zone = 'Central Time (US & Canada)'
  37. # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
  38. # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
  39. # config.i18n.default_locale = :de
  40. # JavaScript files you want as :defaults (application.js is always included).
  41. # config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
  42. # Configure the default encoding used in templates for Ruby 1.9.
  43. config.encoding = "utf-8"
  44. # Configure sensitive parameters which will be filtered from the log file.
  45. config.filter_parameters += [:password]
  46. end
  47. end