Matt Muller
Matt Muller
# Description For AWS SDK for Ruby, we had to make some accessibility fixes to the docs, involving some styling and color changing. I think some of these may be...
Hello Loren. We (AWS Ruby SDK) are needing to address some accessibility concerns with our docs. Our Client docs ([i.e. s3](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html)) have many methods. We are investigating whether it's possible...
I have recently become aware of Ruby 3.4 dropping support for BigDecimal and that it must be installed as an additional dependency. We tried adding the BigDecimal dependency to our...
[rendered proposal](https://github.com/mullermp/rfcs/blob/master/text/0008-scoped-gems.md#rubygems-scope) Hello RubyGems team, and all those that come across this. In this PR, I have included a proposal for a feature called "scoped gems". In short, the proposal...
Hello Rubygems team! This pull request adds a simple "verified" flag to a user. It is inspired by [this original issue](https://github.com/rubygems/rubygems.org/pull/2163). First, let me preface this request with: I am...
Generic request will supply a default content-type of `application/x-www-form-urlencoded` - https://github.com/ruby/net-http/blob/a0fab1ab52c52d37d21241a86eba6d958ff1c4db/lib/net/http/generic_request.rb#L299 While this is helpful, this can have negative consequences, and we cannot disable the behavior. In cases where there...
**Is your feature request related to a problem? Please describe.** I use multiple ruby versions for each of my projects. I manage these versions with chruby. The path to Rubocop...
It is useful to have an integration only apply for a specific service. We have this in Ruby like so: https://github.com/smithy-lang/smithy-ruby/blob/779dd349560371b525758a45e83e21673e67753a/codegen/smithy-ruby-codegen/src/main/java/software/amazon/smithy/ruby/codegen/RubyIntegration.java#L45 Kotlin also has this: https://github.com/smithy-lang/smithy-kotlin/blob/main/codegen/smithy-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/integration/KotlinIntegration.kt#L60 I'm unsure of the...
Adds CRC32C checksum support into Zlib, which includes methods: `crc32c_table`, `crc32c`, and `crc32c_combine`. Whenever CRC32 is supported, these methods should also exist. Zlib itself does NOT have CRC32C support. CRC32C...
Defaults CRC32 for httpChecksum implementations and adds CRC64 as a new algorithm.