Module: Rudy::Guidelines
Overview
:nodoc:all
Constant Summary collapse
- AFE =
- ed: the A’s are a work in progress
"Always fail early"
- ABA =
"Always be accurate"
- CBC =
"Consistency before cuteness"
- UNO =
"Ugly's not okay"
Instance Method Summary collapse
Instance Method Details
#inspect ⇒ Object
10 11 12 13 14 |
# File 'lib/rudy/guidelines.rb', line 10 def inspect all = Guidelines.constants g = all.collect { |c| '%s="%s"' % [c, const_get(c)] } %q{#<Rudy::Guidelines:%s %s>} % [self.object_id, g.join(' ')] end |