Rafael Sales
Rafael Sales
Can we merge this ASAP?
It's unclear just as in ruby documentation: http://ruby-doc.org/core-2.2.3/Enumerable.html Both words also has 6 letters. Why? Have you seen the examples?   Why? Because the different names help understand the...
The language makes available both reduce and inject words and clearly states different examples for each of them. So what can we do to help people choosing between them and...
They are not. Compare the examples in the book with the examples in ruby doc. Basically you won't find the use of `numbers.inject(:+);`
@krainboltgreene Why the documentation uses `reduce(:+)` in both methods examples? And why the doc. uses blocks only for `inject` in both methods examples? Why the documentation doesn't even mention one...
I've come up with the following to put on Rails' `config/environment.rb` ```ruby at_exit do begin next unless (exception = $ERROR_INFO) next unless defined?(Sentry) next unless Sentry.initialized? Sentry.configuration.background_worker_threads = 0 puts...
@st0012 yes, that's mostly to catch Rails' initialization issues - and for this reason the `Sentry.init` in my apps are now being called in `config/initializers/0_sentry.rb` to make sure that errors...
I just discovered sentry-cli bash-hook, so I guess I'll add the following to my docker entrypoint bash files: ```shell-session export SENTRY_DSN='https://[email protected]/0' eval "$(sentry-cli bash-hook)" ``` This will cover all other...
Still an issue ``` # module.shared.module.notify_slack.module.lambda.null_resource.archive[0] must be replaced +/- resource "null_resource" "archive" { ~ id = "8283681871539281269" -> (known after apply) ~ triggers = { # forces replacement ~...
@antonbabenko this solved the issue! Thank you!! _Note: I have `version = "~> 5.3"`_