gem_rbs_collection
gem_rbs_collection copied to clipboard
A collection of RBS for gems.
Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 24 to 26.1. Release notes Sourced from tj-actions/changed-files's releases. v26.1 What's Changed Upgraded to v26 by @jackton1 in tj-actions/changed-files#577 fix: error retrieving base sha. by @jackton1 in...
Support https://github.com/ruby/gem_rbs_collection/issues/190
I'm using `aws-sdk-ssm` and would love to have types for that - I've seen there's a [generator](https://github.com/ruby/gem_rbs_collection/tree/main/generators/aws-sdk-rbs-generator) but I don't see how it correlates with the handful of `aws-sdk` gems...
## Proposal I have implemented a generator for rails gems. I propose to use `rails-generator` to manage RBS for rails gems. Simply run the `rake` command to generate an RBS...
Hi, there. When I read [README](https://github.com/ruby/gem_rbs_collection/blob/8e1f19e0c8768b6bac2815fe65a3310298ba400e/README.md), I spent time to know what the most recommended way to use `gem_rbs_collection` is. For example, the README describes the easiest way is to...
https://rubydoc.info/gems/redis/Redis#zadd-instance_method
When calling the `#render` method from a helper in a Rails app, for example: ```rb module ApplicationHelper def render_partial(name, options) render(partial: name, **options) end end ``` the current type definitions...
When creating a new ActiveRecord model through an association, for example: ```rb class Post < ActiveRecord::Base has_many comments end class Comment < ActiveRecord::Base belongs_to :post end post = Post.new comment...