Vladimir Dementyev
Vladimir Dementyev
[Feature #18821](https://bugs.ruby-lang.org/issues/18821) The `#deconstruct_keys` behaviour is inferred from the `Struct#deconstruct_keys`, in particular: 1) Both Symbols and Strings could be passed as the required keys, the type is preserved. 2) If...
Examples: ```ruby case %w[a b c] in [@a, $b, *@@rest] end @a #=> 'a' $b #=> 'b' @@rest #=> ['c'] ``` Using vars in alt pattern is prohibited (similarly to...
We use Lefthook in hybrid development environments: some engineers use local setup, some use [Docker/Dip](). The base configuration is local-first, so Docker devs use `lefthook-local.yml` with the following contents: ```yml...
[Plezi](http://www.plezi.io/) is a framework for real-time applications built on top of [Iodine](https://github.com/boazsegev/iodine) web server. We want to make LiteCable compatible with Plezi/Iodine out-of-the-box (just like we did with [AnyCable](http://anycable/.io)). By...
Extracted from #200. Let's add an ability to set metatada for the whole lifetime of the connection (or unless unset). That could be useful in the context of Rails console.
### What is the purpose of this pull request? Add ability to perform Action Cable commands within `anycable-go` itself without calling RPC server. That would allows us to increase RPS...
Hey @soutaro, Just found [this feature](https://github.com/soutaro/steep/pull/303)—really helpful! What about making it possible to specify `expectations_path` in the `Steepfile` to always use it (without explicitly passing `--with-expectations`)? And also, that would...
Example: ```ruby # a.rb class A def foo "bar" end Module.new do def foo(bar) bar.size end end end # a.rbs class A def foo: -> String end ``` Running `steep...
_Last updated: 2023-04-08 (AnyCable v1.5, Rails 7.1, Ruby 3.3)_ ## Description This PR contains the required changes to make AnyCable app run on Heroku with less hassle as possible. Based...
## Description This PR demonstrates how to deploy an AnyCable application to Kubernetes via [Kuby][]. See also [Kubing Rails: stressless Kubernetes deployments with Kuby](https://evilmartians.com/chronicles/kubing-rails-stressless-kubernetes-deployments-with-kuby). ## Prerequisites We use a DigitalOcean...