Owen Stephens
Owen Stephens
# Problem Attempting to `require 'rackup'` with v1.0.0 fails with: ``` `require_relative': cannot load such file -- /Users/owenstephens/.rbenv/versions/3.1.3/lib/ruby/gems/3.1.0/gems/rackup-1.0.0/lib/rackup/handler ``` ## Reproduction An example Gemfile: ``` source "https://rubygems.org" gem "rails", '7.1.2'...
### Describe the problem as clearly as you can When upgrading from Ruby 3.2.3 to 3.3.0, a `bundle install` on platform `x86_64-linux` seems to ignore the platform-specific versions, installs the...
`Performance/BigDecimalWithNumericArgument` suggests that `BigDecimal(2000)` is more performant as `BigDecimal("2000")` but that is not the case for recent versions of Ruby/BigDecimal: ```ruby require 'benchmark/ips' require 'bigdecimal' Benchmark.ips do |x| x.report('integer string...
With the following code, we see the query result being printed, followed by `awake` when the external sleep finishes: ```ruby require 'tiny_tds' client = TinyTds::Client.new( username: ENV.fetch("SQLSERVER_USERNAME"), password: ENV.fetch("SQLSERVER_PASSWORD"), host:...