Joshua Clark
Joshua Clark
### Summary This solves the case where we want to camelize_props, but those props aren't explicitly a hash or array (for example `ActiveModel::Serializer`, `Representable`, `ActionController::Parameters`, etc. As mentioned about, I'm...
When a step is defined, but not implemented, the message should show the line number of the step. Currently only the line number of the scenario is shown.
The code causing this behavior is https://github.com/ruby-grape/grape-roar/blob/master/lib/grape/roar/representer.rb#L10 Example ``` ruby user = User.find_by(email: '[email protected]') # user => nil present user, with: User::Representer # User::Representer.ancestors => [..., Grape::Roar::Representer, ...] ``` Obviously...