Andy Waite
Andy Waite
The section [Using a Custom Gemfile](https://github.com/Shopify/ruby-lsp/tree/main/vscode#using-a-custom-gemfile) isn't specific to VS Code so should be moved to the main README.
I'm seeing bundler.cn appear in Google search results, higher than bundler.io for some terms. It's partially translated but most links still point to the normal Bundler URLs. I assume bundler.cn...
https://github.com/TelosLabs/rails-world
:wave: We're confused why the typecheck fails here. Is it a known limitation, or a bug? cc @vinistock @Morriar @KaanOzkan #### Input [→ View on sorbet.run](https://sorbet.run/#%23%20typed%3A%20true%0Amodule%20Stuff%0A%20%20def%20blah%0A%20%20end%0Aend%0A%0Aclass%20Foo%0A%20%20include%20Stuff%0Aend%0A%0Aclass%20Bar%0Aend%0A%0A%0A%5BFoo%2C%20Bar%5D.each%20do%20%7Cklass%7C%0A%20%20if%20klass%20%3C%20Stuff%0A%20%20%20%20klass.new.blah%0A%20%20end%0Aend%0A) ```ruby # typed: true...
Most of Timecop's behaviour is now built into Rails. https://api.rubyonrails.org/v5.1/classes/ActiveSupport/Testing/TimeHelpers.html Related: https://github.com/rubocop-hq/rspec-style-guide/issues/71
Closes https://github.com/Shopify/ruby-lsp-rails/issues/468 I re-generated the dummy app with `bundle exec rails plug new` then did some manual clean-up.
After https://github.com/Shopify/ruby-lsp-rails/pull/472, we are no longer showing documentation on Hover for some Rails DSLs, e.g. `scope`, `validates`, and `resources`.
With the full release of Rails 8 coming soon, we should update the app in `test/dummy`.
Similar to what we do for ActiveRecord callbacks, we could support the 3 callbacks that ActionMailbox provides: * around_processing * before_processing * after_processing https://api.rubyonrails.org/classes/ActionMailbox/Callbacks.html