Sorry for this, probably, really newbie question:
I want to define a getter that returns bool value. f.i.:
attr_reader :server_error?
But then, how do I update it, as Ruby (1.9) throws syntax error if there is a question mark at the end:
#unexpected '='
@server_error? = true
self.server_error? = true