Guest User

Untitled

a guest
Apr 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. require 'rubygems'
  2. gem 'soap4r'
  3.  
  4. ENV['RAILS_ENV'] ||= 'staging'
  5.  
  6. RAILS_GEM_VERSION = '1.2.3' unless defined? RAILS_GEM_VERSION
  7.  
  8. require File.join(File.dirname(__FILE__), 'boot')
  9.  
  10.  
  11. Rails::Initializer.run do |config|
  12.  
  13. config.load_paths += Dir["#{RAILS_ROOT}/vendor/gems/gems/**"].map do |dir|
  14. File.directory?(lib = "#{dir}/lib") ? lib : dir
  15. end
  16.  
  17. # Set controllers to be SSL protected. Note that all controllers under 'admin' are auto protected.
  18. SSL_ZONES = ["account", "login", "sign_up"]
  19.  
  20. end
Add Comment
Please, Sign In to add comment