| 19 | end |
| 20 | |
| 21 | class String |
| 22 | |
| 23 | %w(white bold black red green yellow blue magenta cyan gray).each{|color| |
| 24 | color = :"#{color}" |
| 25 | define_method(color){ |
| 26 | colorized(self, color) |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | end |
| 31 | |
| 32 | COMMANDS = %w(create check info fix reshard rebalance add-node |
| 33 | del-node set-timeout call import help) |