##// END OF EJS Templates
use mercurial instead of git on appveyor...
use mercurial instead of git on appveyor Some tests fail on git version 2.6.3.windows.1. <pre> 1) Error: GitAdapterTest#test_entries_branch: NoMethodError: undefined method `identifier' for nil:NilClass test/unit/lib/redmine/scm/adapters/git_adapter_test.rb:464:in `test_entries_branch' 2) Error: GitAdapterTest#test_entries_tag: NoMethodError: undefined method `identifier' for nil:NilClass test/unit/lib/redmine/scm/adapters/git_adapter_test.rb:447:in `test_entries_tag' </pre> git-svn-id: http://svn.redmine.org/redmine/trunk@14903 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13773:a769aedb4492
r14521:d54ee970c4d4
Show More
production.rb
25 lines | 879 B | text/x-ruby | RubyLexer
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb
# Code is not reloaded between requests.
config.cache_classes = true
# Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.eager_load = true
# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
config.action_controller.perform_caching = true
# Disable delivery errors
config.action_mailer.raise_delivery_errors = false
# No email in production log
config.action_mailer.logger = nil
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
end