Constants
AFE | = | "Always fail early" |
ABA | = | "Always be accurate" |
CBC | = | "Consistency before cuteness" |
UNO | = | "Ugly's not okay" |
WOC | = | "Write offensive code" |
Public instance methods
inspect
()
[show source]
# File lib/rudy/guidelines.rb, line 11 11: def inspect 12: all = Guidelines.constants 13: g = all.collect { |c| '%s="%s"' % [c, const_get(c)] } 14: %q{#<Rudy::Guidelines:0x%s %s>} % [self.object_id, g.join(' ')] 15: end