##// END OF EJS Templates
SQL server: non ASCII filter on text fields does not work (#22405)....
SQL server: non ASCII filter on text fields does not work (#22405). git-svn-id: http://svn.redmine.org/redmine/trunk@15353 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13100:2d1866d966d9
r14971:e2137e7a5ee7
Show More
development.rb
21 lines | 793 B | text/x-ruby | RubyLexer
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 # In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the webserver when you make code changes.
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 config.cache_classes = false
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 # Do not eager load code on boot.
config.eager_load = false
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 # Show full error reports and disable caching
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 config.consider_all_requests_local = true
config.action_controller.perform_caching = false
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 # Disable delivery errors
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 config.action_mailer.raise_delivery_errors = false
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 # Print deprecation notices to stderr and the Rails logger.
Toshi MARUYAMA
add stderr to config.active_support.deprecation in test and dev env...
r12165 config.active_support.deprecation = [:stderr, :log]
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 end