You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While running benchmark/large_model locally, I stumbled upon this following error
undefinedmethod `exclude?' for[JSON,[JSON]]:Array
I ran the entire spec suite locally and I never faced the issue. After some investigation, I've figured that grape-entity is automatically loaded while running RSpec and it's requiring require 'active_support/core_ext/enumerable. Therefore, exclude? works on any enum. I'll create a PR to require it on our own.
The text was updated successfully, but these errors were encountered:
run spec/grape/validations/validators/coerce_spec.rb:650 ( docker-compose run --rm --build grape rspec spec/grape/validations/validators/coerce_spec.rb:650)
While running
benchmark/large_model
locally, I stumbled upon this following errorI ran the entire spec suite locally and I never faced the issue. After some investigation, I've figured that
grape-entity
is automatically loaded while running RSpec and it's requiringrequire 'active_support/core_ext/enumerable
. Therefore,exclude?
works on any enum. I'll create a PR to require it on our own.The text was updated successfully, but these errors were encountered: