e2ccdfd812
Update to Rails 2.3.2 (the stable Rails 2.3 release). Add audio/speex support Update CHANGELOG Bump version number
20 lines
250 B
Ruby
20 lines
250 B
Ruby
class Customer < Struct.new(:name, :id)
|
|
def to_param
|
|
id.to_s
|
|
end
|
|
end
|
|
|
|
class BadCustomer < Customer
|
|
end
|
|
|
|
class GoodCustomer < Customer
|
|
end
|
|
|
|
module Quiz
|
|
class Question < Struct.new(:name, :id)
|
|
def to_param
|
|
id.to_s
|
|
end
|
|
end
|
|
end
|