8 lines
138 B
Ruby
8 lines
138 B
Ruby
|
if ENV['SENTRY_ENABLED'] == 'enabled'
|
||
|
require 'raven'
|
||
|
|
||
|
Raven.configure do |config|
|
||
|
config.dsn = ENV['SENTRY_DSN_RAILS']
|
||
|
end
|
||
|
end
|