Arkadiy Zabazhanov

Results 10 issues of Arkadiy Zabazhanov

Most of the data migrations don't want to be wrapped in a transaction, the changes on each record normally should be applied immediately. It is easy to forget about the...

``` class Foo embeds_one :subfoo do end end ``` Add an ability to use `Foo::Subfoo` directly, using `const_missing`.

## Is your feature request related to a problem? Please describe. The new `Lint/AmbiguousOperatorPrecedence` cop looks way like an overkill. Parenthesis in arithmetic expressions for all the operations create a...

enhancement

Hey guys. Thanks for the great lib first of all. Imagine I've got schemas: ```elixir schema "comment" do field :body belongs_to :user, User end ``` So I'm creating a factory:...

## Describe the bug When one schema is inherited from another one and redefines some fields, those fields got duplicated in the schema's key_map. ## To Reproduce ```ruby class Foo...

bug
help wanted

## Describe the bug Hi there, I found a couple of bugs working with structs and types in `try` method ## To Reproduce ```ruby struct = Dry::Struct(id: Types::Integer) type =...

bug
help wanted

Hello folks, First of app thanks for a great gem and all your efforts! ### Steps to reproduce We have stumbled upon a problem in out system and not sure...

Hello, starting to look into the package and I think it is great. Thanks for it! What do you think about the following extension: ```elixir step(:foo) def foo(txn) do end...

Hello. When we are starting about 20 instances in parallel - it raises RequestLimitExceeded from AWS API. The problem is here: https://github.com/mitchellh/vagrant-aws/blob/master/lib/vagrant-aws/action/run_instance.rb#L135, `server.wait_for` send requests every second. To avoid this...