Mike Moore
Mike Moore
@andyw8 How are you configuring your app to test with Minitest? Are you using minitest-rails or are you configuring Minitest yourself?
email-spec has a dependency on rspec-rails. So when you require it in your Gemfile it switches your app to use RSpec instead of Minitest. That is why no tests are...
FWIW, the dependency that was problematic is the runtime dependency on `rspec`, not the development dependency on `rspec-rails`. Unfortunately, this gem uses `RSpec::Matchers.define` to define some matchers, so its not...
This can be resolved by #118, which adds support for MiniTest.
Huh, I didn't realize there was a reverse dependency on the testing library in the helper. I guess one way to fix this is to place the call behind a...
Being able to assign an Array or Hash to an attribute, and assign a RepeatedField or Map in an initializer. Basically, make the failing tests pass.
I guess what I'm saying here is that if we can accept an Array in an initializer method, with all the appropriate type checking, then should be able to do...
If I were to prioritize, I would place supporting RepeatedField and Map objects in the initializer method above supporting Array and Hash objects on attribute setter methods. I find this...
Here is another example of a user struggling with the unfriendliness of the current API: googleapis/google-cloud-ruby#2839
> I agree that there is no reason not to accept RepeatedField/Map in the constructor. Let me write a change to do that part. @haberman Are you still planning on...