Skip to content

Commit a892626

Browse files
marcrohloffnumbata
authored andcommitted
Fix CI issues
1 parent 43052fd commit a892626

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Next Release
22

3-
* [#406](https://github.com/ruby-grape/grape-entity/pull/406): Handle symbol-to-proc wrappers (`&:method_name`) where the method uses `delegate` or `method_missing`
3+
* [#406](https://github.com/ruby-grape/grape-entity/pull/406): Handle symbol-to-proc wrappers (`&:method_name`) where the method uses `delegate` or `method_missing` - [@marcrohloff](https://github.com/marcrohloff).
44

55
#### Features
66

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Implement your feature or bug fix.
4444

4545
Ruby style is enforced with [Rubocop](https://github.com/bbatsov/rubocop), run `bundle exec rubocop` and fix any style issues highlighted.
4646

47-
Make sure that `bundle exec rake` completes without errors.
47+
Make sure that `bundle exec rake` and `rubocop` completes without errors.
4848

4949
#### Write Documentation
5050

spec/grape_entity/entity_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ def delegate_object
436436

437437
private
438438

439-
def respond_to_missing?(method, include_private = false)
439+
def respond_to_missing?(method, include_private = false) # rubocop:disable Style/OptionalBooleanParameter
440440
method.to_sym == :method_using_missing ||
441441
super
442442
end

0 commit comments

Comments
 (0)