gem_rbs_collection
gem_rbs_collection copied to clipboard
A collection of RBS for gems.
In the file `httparty.rbs`, the method `parsed_response` is inaccurately documented to return a string. However, upon examining the [source code](https://github.com/jnunemaker/httparty/blob/master/lib/httparty/parser.rb), it's clear that the `parsed_response` method's return type is determined...
**Background** ActiveModel::Error was added in 6.1. However, 7.0 types have not kept up with this change because it use types created from 6.0 source code. - 6.0: https://github.com/rails/rails/blob/v6.1.7.8/activemodel/lib/active_model/errors.rb - 7.0:...
Introduce [rubocop-on-rbs](https://github.com/ksss/rubocop-on-rbs) Implements of #601 As an introduction, we automated the pointing out by rubocop-on-rbs to **activesupport**. # .rubocop.yml ## Root I have included common settings in the project root...
I propose introducing [rubocop-on-rbs](https://github.com/ksss/rubocop-on-rbs) to perform static analysis on RBS. I believe that by introducing this gem, we can aim to raise the quality of RBS. # RuboCop on RBS...
Steep has definitions for the parser, https://github.com/soutaro/steep/tree/55c58d0f8aa1fc65a8add95a5fde43f6b4375164/sig/shims but they conflict with those in gem_rbs_collection, so only one can be used. I believe the best approach for the community is to...
As I mentioned in my talk at RubyKaigi 2024, we need "Gem Reviewers" for Rails gems, such as activesupport, activerecord, and so on. https://speakerdeck.com/pocke/community-driven-rbs-repository This issue describes what is expected...
I have included a bunch of gems from this repo in my collection. Specifically, I need `Concurrent::Map` from the `concurrent-ruby` gem. However, when including this gem steep reports an error...
`Arel::FactoryMethods#cast` was added since v7.1 refs: https://github.com/rails/rails/pull/48873
Bumps [steep](https://github.com/soutaro/steep) from 1.8.1 to 1.8.2. Release notes Sourced from steep's releases. 1.8.2 Release note Language server Ignore didChangeWatchedFiles notification for open files (#1290) Commits eb36e54 Merge pull request #1291...
We need to call "extend ClassMethods" manually to add `Rails::Railties.initializers`.