For instance, in Python, I can create a class like this:
class foo(object):
bar = 'x'
def __init__(self, some_value):
self.some_attr = some_value
...where bar is a class attribute and some_attr is an instance attribute. What is the idiomatic way to do things like this in Ruby?