Dustin Zeisler
Dustin Zeisler
I am having the same issue on an M1 Pro macOS 12.0.1. Running `qtsetup` does the same thing.
You'll need to disable RACK TIMEOUT middleware in order to use this as it blocks the request and the middleware is then just doing it's job of killing the request.
As possible solution create an inclusive or exclusive config file as the source for generating mocks.
This is known limitation of active_mocker. To add this feature it would take adjustments in the generation code as well the in-memory query engine. If you like assist with the...
@RepoCorp Can you provide more context? I don't believe that error is coming from this gem. Given that, work has not been done to officially support polymorphic associations, but in...
I would recommend following the JSON spec that `undefined` is an invalid conversion to Ruby. ```ruby > JSON.parse("undefined") #=> JSON::ParserError (416: unexpected token at 'undefined') > JSON.parse("null") #=> nil ```
@danascheider I don't think repayment_estimatr uses any 1.0 features. http://raml.org/developers/whats-new-raml-10 Breaking changes https://github.com/raml-org/raml-spec/wiki/Breaking-Changes Not the long term solution, but if it works repayment_estimatr could be changes to use RAML 0.8
That would take monkey patching the `delegate` method. It's not needed to rewrite the delegate method the following should work. ``` ruby delegate :foo, to: :bar memoize :foo ```
It could be run through a the ruby parser gem to validate that is valid ruby code. But to lint the `RSpec` DSL without running the code I'm not sure...