Guest User

Untitled

a guest
Jan 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. require File.expand_path('../boot', __FILE__)
  2.  
  3. require 'rails/all'
  4.  
  5. # If you have a Gemfile, require the gems listed there, including any gems
  6. # you've limited to :test, :development, or :production.
  7. Bundler.require(:default, Rails.env) if defined?(Bundler)
  8.  
  9. module MyRails3App
  10. class Application < Rails::Application
  11. # All application configurations goes here...
  12. # Configure the default encoding used in templates for Ruby 1.9.
  13. config.encoding = "utf-8"
  14.  
  15. # Configure sensitive parameters which will be filtered from the log file.
  16. config.filter_parameters += [:password, :creditcardnumber, :cvv]
  17. end
  18. end
Add Comment
Please, Sign In to add comment