You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NoMethodError: private method `log_warning' called for #<Rollbar::Notifier:0x00000006a63d48>
It looks like the define_method for log_warn and friends is getting called inside of a private block so it's creating it as a private method where it didn't do that in Ruby 2.3+. I checked the changelog and can't easily find something that mentions a behavior change. (maybe ruby/ruby@6cde2d3 but i'm not sure). I think we can put the define_method-s in a public section for now to fix the issue.
The text was updated successfully, but these errors were encountered:
Was trying to use this gem on Heroku with Ruby 2.4.0-preview1 and it's failing on my app.
I tried to run the specs on 2.4.0-preview1 locally but needed to modify the Gemfile to:
And patch Rails 4.2 to support 2.4.0 rails/rails#25737
Once I did that I get this error:
In my app I get a similar error https://travis-ci.org/codetriage/codetriage/jobs/142932221
It looks like the
define_method
forlog_warn
and friends is getting called inside of aprivate
block so it's creating it as a private method where it didn't do that in Ruby 2.3+. I checked the changelog and can't easily find something that mentions a behavior change. (maybe ruby/ruby@6cde2d3 but i'm not sure). I think we can put thedefine_method
-s in apublic
section for now to fix the issue.The text was updated successfully, but these errors were encountered: