class RuboCop::Cop::Chef::Style::TrueClassFalseClassResourceProperties

When setting the allowed types for a resource to accept either true or false values it’s much simpler to use true and false instead of TrueClass and FalseClass.

@example

### incorrect
property :foo, [TrueClass, FalseClass]

### correct
property :foo, [true, false]