README.md in sentry-raven-2.7.4 vs README.md in sentry-raven-2.8.0

- old
+ new

@@ -1,14 +1,18 @@ <p align="center"> - <img src="https://cdn.rawgit.com/getsentry/raven-python/1e525422/docs/_static/logo.png"> + <a href="https://sentry.io" target="_blank" align="center"> + <img src="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" width="280"> + </a> + <br> </p> # Raven-Ruby, the Ruby Client for Sentry [![Gem Version](https://img.shields.io/gem/v/sentry-raven.svg)](https://rubygems.org/gems/sentry-raven) [![Build Status](https://img.shields.io/travis/getsentry/raven-ruby/master.svg)](https://travis-ci.org/getsentry/raven-ruby) [![Gem](https://img.shields.io/gem/dt/sentry-raven.svg)](https://rubygems.org/gems/sentry-raven/) +[![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=sentry-raven&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score.html?dependency-name=sentry-raven&package-manager=bundler&version-scheme=semver) [Documentation](https://docs.getsentry.com/hosted/clients/ruby/) | [Bug Tracker](https://github.com/getsentry/raven-ruby/issues) | [Forum](https://forum.sentry.io/) | IRC: irc.freenode.net, #sentry The official Ruby-language client and integration layer for the [Sentry](https://github.com/getsentry/sentry) error reporting API. @@ -29,16 +33,16 @@ Raven will capture and send exceptions to the Sentry server whenever its DSN is set. This makes environment-based configuration easy - if you don't want to send errors in a certain environment, just don't set the DSN in that environment! ```bash # Set your SENTRY_DSN environment variable. -export SENTRY_DSN=http://public:secret@example.com/project-id +export SENTRY_DSN=http://public@example.com/project-id ``` ```ruby # Or you can configure the client in the code (not recommended - keep your DSN secret!) Raven.configure do |config| - config.dsn = 'http://public:secret@example.com/project-id' + config.dsn = 'http://public@example.com/project-id' end ``` ### Raven doesn't report some kinds of data by default @@ -124,9 +128,9 @@ For more information, see [Context](https://docs.sentry.io/clients/ruby/context/). ## More Information -* [Documentation](https://docs.getsentry.com/hosted/clients/ruby/) +* [Documentation](https://docs.sentry.io/clients/ruby/) * [Bug Tracker](https://github.com/getsentry/raven-ruby/issues) * [Forum](https://forum.sentry.io/) * [IRC](irc://irc.freenode.net/sentry>) (irc.freenode.net, #sentry)