Sha256: 8291bd9a6aa734578726e62287f43302c7b4548740f5c0837540f1044a1a36b7

Contents?: true

Size: 735 Bytes

Versions: 5

Compression:

Stored size: 735 Bytes

Contents

# 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.
config.cache_classes     = false

# Log error messages when you accidentally call methods on nil.
config.whiny_nils        = true

# Show full error reports and disable caching
config.action_controller.consider_all_requests_local = true
config.action_controller.perform_caching             = false

# Don't care if the mailer can't send
config.action_mailer.raise_delivery_errors = false

def log_to(stream)
  ActiveRecord::Base.logger = Logger.new(stream)
  ActiveRecord::Base.clear_active_connections!
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
typo-5.0.3.98.1 config/environments/development.rb
typo-5.0.3.98 config/environments/development.rb
typo-5.1.1 config/environments/development.rb
typo-5.1.3 config/environments/development.rb
typo-5.1 config/environments/development.rb