Skip to content

Files

Latest commit

 

History

History
31 lines (21 loc) · 505 Bytes

Rails-Inquiry.md

File metadata and controls

31 lines (21 loc) · 505 Bytes

Pattern: Use of inquiry method

Issue: -

Description

This rule checks that Active Support’s inquiry method is not used.

Examples

# bad - String#inquiry
ruby = 'two'.inquiry
ruby.two?

# good
ruby = 'two'
ruby == 'two'

# bad - Array#inquiry
pets = %w(cat dog).inquiry
pets.gopher?

# good
pets = %w(cat dog)
pets.include? 'cat'

Further Reading