François Beausoleil

Results 37 issues of François Beausoleil

I hit that when I was running under 1.8.7 with the rev gem on the $LOAD_PATH. --- This change is [](https://reviewable.io/reviews/mynyml/watchr/43)

This allows us to build / use Watchr as a path in a Gemfile: ``` gem 'watchr', :path => '../watchr' ``` --- This change is [](https://reviewable.io/reviews/mynyml/watchr/41)

Previously, I always started from some repository I had cloned. This time, I started locally and wanted to push my code to GitHub. I created a new repository on GitHub,...

We had a spec file where we were asserting against an oracle. Then, we discovered issues with the values themselves, so we switched to string interpolation. Unfortunately, with the string...

Hmmm, I just installed and I get a command not found. Not sure what's up with that. This is in the context of a Rails application. Below, `sl` is Sapling...

Without the file, developers are left wondering where the seed should live, and what should go in it. This guides the developer for the next step.

Just following instructions! > /Users/francois/.rvm/gems/ruby-3.3.5/gems/ruby_event_store-2.15.0/lib/ruby_event_store.rb:6: warning: /Users/francois/.rvm/rubies/ruby-3.3.5/lib/ruby/3.3.0/ostruct.rb was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0. > You can...

Given these two routes, the order in which the routes are declared in `config/routes.rb` impacts how the router behaves: ```ruby get '/attendance/:season_slug/events', to: 'attendances.index', as: :select_event_for_attendance get '/attendance/:event_slug', to: 'attendance.show',...

help-wanted

## Describe the bug ``` inflector.humanize("éclaireurs") #=> "éclaireurs" ``` The uppercase version "é" is "É". I expected to receive "Éclaireurs". This affects all characters I tried: `ê`, `ï`, `à`. It...

bug
help wanted

Hi! I was reading the [T::Configuration](https://sorbet.org/docs/tconfiguration) docs and I wasn't sure what type `error` and `location` of `#sig_builder_error_handler=` are. Similarly with `#sig_validation_error_handler=`. I understand a static type check can't be...

feedback