Andrii Gladkyi

Results 3 issues of Andrii Gladkyi

Continuing https://github.com/rubocop/rubocop-rspec/issues/879. We're using `rspec-its` and have examples like this: ```ruby describe Service do describe 'returned values' do subject { service } before { service.call } its(:model) { is_expected.not_to be_valid...

bug

I'm not entirely sure who I should report this issue to, but it looks like `has_secure_password` change made in https://github.com/rails/rails/pull/47708 partially broke rendering of password inputs, as it doesn't use...

https://github.com/ruby-grape/grape/pull/2326 changed the behavior of params merging. Before v1.8.0 the following route: ```ruby resources :users do route_param :id do get do user = User.find(params[:id]) { id: user.id } end end...