Ilia Denisov
Ilia Denisov
Hello :wave: I noticed that `printSchema` only have options to order type and directives definitions. But smaller elements like fields, and types in unions have unspecified order which on major...
Texture's frame could be used to align images that is a rasterized version of a flash symbol that have a custom pivot (in the center of an image for example)....
Fix link to https
Inverted pieces is generated along with regular ones to use when background image is set. But these cases are mutually exclusive so you either need regular OR inverted ones. Now...
https://github.com/alebianco/ANE-Android-Expansion/blob/master/source/actionscript/agnostic/src/eu/alebianco/air/extensions/expansion/ExpansionManager.as ``` java switch(true) { case status && STATUS_SECURITY == 0: { message = "You havent configured the market security. Plase call setupMarketSecurity() to setup your data."; break; } case...
Hello Dmitry :wave: I noticed an unexpected behavior in a context of `has_one ... through` associations. Imagine a model: ``` class Alice < ApplicationRecord has_one :bob has_one :charlie, through: :bob...
**Describe the bug** Hello Puma devs :wave: I have a form with a file as one of the inputs, submitted as `multipart/form-data`. It works just fine with various files, but...
#### Input [→ View on sorbet.run](https://sorbet.run/#%23%20typed%3A%20strict%0Arequire%20'sorbet-runtime'%0A%0Aextend%20T%3A%3ASig%0A%0AVALUES%20%3D%20T.let%28%7B%0A%20%20foo%3A%2012%2C%0A%20%20bar%3A%2042%2C%0A%20%20buz%3A%2066%0A%7D%2C%20T%3A%3AHash%5BSymbol%2C%20Integer%5D%29%0A%0Asig%20%7B%20params%28yielder%3A%20T.untyped%2C%20collection%3A%20T%3A%3AHash%5BSymbol%2C%20Integer%5D%29.void%20%7D%0Adef%20traverse%28yielder%2C%20collection%29%0A%20%20collection.each%20do%20%7Ckey%2C%20value%7C%0A%20%20%20%20yielder.yield%28%5Bkey%2C%20value%5D%29%0A%20%20end%0Aend%0A%0Asig%20%7B%20returns%28T%3A%3AEnumerator%5B%5BSymbol%2C%20Integer%5D%5D%29%20%7D%0Adef%20pairs%0A%20%20Enumerator.new%20do%20%7Cyielder%7C%0A%20%20%20%20traverse%28yielder%2C%20VALUES%29%0A%20%20end%0Aend%0A%0Asig%20%7B%20params%28needle%3A%20Symbol%29.returns%28T.nilable%28Integer%29%29%20%7D%0Adef%20find%28needle%29%0A%20%20pairs.each%20do%20%7Ckey%2C%20value%7C%0A%20%20%20%20return%20value%20if%20key%20%3D%3D%20needle%0A%20%20end%0Aend%0A%0Aputs%20%22%3Afoo%20%3D%3E%20%23%7Bfind%28%3Afoo%29.inspect%7D%22%0Aputs%20%22%3Abar%20%3D%3E%20%23%7Bfind%28%3Abar%29.inspect%7D%22%0Aputs%20%22%3Abuz%20%3D%3E%20%23%7Bfind%28%3Abuz%29.inspect%7D%22%0Aputs%20%22%3Aqqq%20%3D%3E%20%23%7Bfind%28%3Aqqq%29.inspect%7D%22) ```ruby # typed: strict require 'sorbet-runtime' extend T::Sig VALUES = T.let({ foo: 12, bar: 42, buz: 66 }, T::Hash[Symbol, Integer]) sig { params(yielder: T.untyped,...