Stefan Schüßler

Results 5 issues of Stefan Schüßler

`Timecop.freeze` or, more specifically, the underlying [`parse_time`](https://github.com/travisjeffery/timecop/blob/master/lib/timecop/time_stack_item.rb#L96-L122) does not always use [`time_klass`](https://github.com/travisjeffery/timecop/blob/master/lib/timecop/time_stack_item.rb#L133-L135) (which returns either `Time` or `Time.zone`) resulting in inconsistent behavior: ``` ruby Time.zone = 'Tokyo' Timecop.freeze(2016, 1, 1,...

In Haskell, `/=` is the _not-equal operator_, so it seems obvious to map it to `≠` But in Ruby (and presumably other languages, too), `!=` is the _not-equal operator_ and...

A `NoMethodError` is raised when the DISPLAY environment variable is not set due to https://github.com/mvidner/ruby-dbus/blob/v0.11.0/lib/dbus/bus.rb#L611 > undefined method '[]' for nil:NilClass (NoMethodError)

Ruby version: 3.0.4 Rails version: 7.0.6 Sidekiq **Enterprise** version: 7.1.1 We're running a periodic job once every 2 minutes: (that's a lot, I know) ```ruby Sidekiq.configure_server do |config| config.periodic do...

All the stand-alone pages from Ruby's [doc](https://github.com/ruby/ruby/tree/master/doc) directory seem to be missing on https://rubyapi.org/3.2/, e.g.: * [encodings.rdoc](https://docs.ruby-lang.org/en/3.2/encodings_rdoc.html) * [globals.rdoc](https://docs.ruby-lang.org/en/3.2/globals_rdoc.html) * [keywords.rdoc](https://docs.ruby-lang.org/en/3.2/keywords_rdoc.html) * [syntax/assignment.rdoc](https://docs.ruby-lang.org/en/3.2/syntax/assignment_rdoc.html) * [syntax/calling_methods.rdoc](https://docs.ruby-lang.org/en/3.2/syntax/calling_methods_rdoc.html) * [syntax/methods.rdoc](https://docs.ruby-lang.org/en/3.2/syntax/methods_rdoc.html) * [syntax/modules_and_classes.rdoc](https://docs.ruby-lang.org/en/3.2/syntax/modules_and_classes_rdoc.html) *...