Paul DobbinSchmaltz

Results 10 comments of Paul DobbinSchmaltz

Note: ```ruby Selenium::WebDriver::Firefox::Binary.path = "..." ``` Should (now) be: ```ruby Selenium::WebDriver::Firefox.path = "..." ``` in selenium-webdriver v4.1.0. Otherwise, this worked for me, thanks @pyronlaboratory. The problem I've been having is...

I'm seeing this too. But for me it's balking at the 'from" method. I imagine it just has to do with which method you call first, though. I'm thinking this...

@conradwt thanks. I ended up following a somewhat similar path. I actually forked the mail-mad_mimi gem and got it working with Rails 3.2.6 and Ruby 1.9.3 with standard ActionMailer synatx....

@rishubhjain see https://github.com/client9/misspell/issues/115

Thanks. I guess it makes sense what you're saying. Both are cases where the class won't become private, so they should be offenses. And consistency is better, either way. But...

I guess it would make more sense to me if there just wren't any private methods. Like this: ```ruby class MyClass private # MyClass::MySubClass ... class MySubClass # ... end...

Just wanted to bump this issue up. Still having the same want in 2025. Thanks.

@koic I'm not sure how to bump this up but have been hurting a bit without a solution here. Would you be able to take a look? If not interested,...

I'm seeing a very similar error when trying to do `IRB.conf[:COMMAND_ALIASES][:r!] = :reload!`. This alias used to work as is. Not sure when it changed / started failing, and I...

@tompng Ok... so instead of `IRB.conf[:COMMAND_ALIASES][:r!] = :reload!` I can just add this to my .irbrc and it works: ```ruby def r! = reload! ``` Not sure how this gets...