Traits (2) Traits are a set of methods can be included to classes can be merged with another traits (+ operator) can exclude methods (- operator) can rename some methods (rename operation) T3 = T1 + (T2 - [:foo, :bar]) class Foo include T3 end