README.md in sentry-raven-0.4.8 vs README.md in sentry-raven-0.5.0

- old
+ new

@@ -141,9 +141,32 @@ Raven.configure do |config| config.excluded_exceptions = ['ActionController::RoutingError', 'ActiveRecord::RecordNotFound'] end ``` +### Tags + +You can configure default tags to be sent with every event. These can be +overridden in the context or event. + +```ruby +Raven.configure do |config| + config.tags = { environment: Rails.env } +end +``` + +### SSL Verification + +By default SSL certificate verification is **disabled** in the client. This choice +was made due to root CAs not being commonly available on systems. If you'd like +to change this, you can enable verification by passing the ``ssl_verification`` +flag: + +```ruby +Raven.configure do |config| + config.ssl_verification = true +``` + ## Sanitizing Data (Processors) If you need to sanitize or pre-process (before its sent to the server) data, you can do so using the Processors implementation. By default, a single processor is installed (Raven::Processor::SanitizeData), which will attempt to sanitize keys that match various patterns (e.g. password) and values that resemble credit card numbers.