Module: AttrBool::Ref

Defined in:
lib/attr_bool.rb

Overview

Example usage:

#using AttrBool::Ref  # Can refine the entire file instead (doesn't affect other files).

module TheToddMod
  using AttrBool::Ref

  class TheTodd
    attr_accessor? :headband
    attr_reader?   :banana_hammock
    attr_writer?   :high_five

    attr_bool      :bounce_pecs
    attr_bool?     :cat_fight
    attr_bool!     :hot_tub
  end
end